Define variables for coding stoves and for filtering out data.

  • Also set some constants for the stove event analysis
  reimport_data <- FALSE #Set to TRUE if we need to reimport data SUMSARIZED, but this is slower.  Set to FALSE if already imported and no new data has been added.

  source('../r_files/parameter_file_Nigeria_AfDB.R')
  Removed_Houses <- print(HHID_remove)
## [1] "^SHO_03$|^SHO_04$|^SHO_08$|^SHO_10$|^MUS_01$|^AKO_01$|^AKO_02$|^AKO_03$|^AKO_05$|^AKO_06$|^AKO_07$|^AKO_08$"
  Files_with_these_strings_removed <- print(bad_files)
## [1] "0_0_3_P83601_IndiaDMYminave|0_0_3_P46673_Indiaminaves|AKOKA DOWNLOAD 5_CC/|AKOKA DOWNLOAD|AKOKA DOWNLOAD 5_KE/|AKOKA DOWNLOAD 5_CC/|AKOKA DOWNLOAD 5_LPG/|MUSHIN DOWNLOAD 5_CC/|MUSHIN DOWNLOAD 5|MUSHIN DOWNLOAD 5_KE/|SHOMOLU DOWNLOAD 5|SHOMOLU DOWNLOAD 5_CC/|SHOMOLU DOWNLOAD 5_KE/|SHOMOLU DOWNLOAD 5_LPG/|Akoka fourth download CC/|Akoka fouth download|Akoka fourth download|Akoka fourth download LPG/|Mushin fourth download CC/|Mushin fourth download KE/|Shomolu fourth download|Shomolu fourth download CC/|Shomolu fourth download KE/|Shomolu fourth download LPG/"
  print(stove_codes)
##     stove stove_descriptions
## 1      CC          CleanCook
## 2   CC(B)          CleanCook
## 3      LP                LPG
## 4     LPG                LPG
## 5      KE           Kerosene
## 6  KE1(B)           Kerosene
## 7  KE2(B)           Kerosene
## 8   KE(B)           Kerosene
## 9     AMB            Ambient
## 10 AMB(B)            Ambient
## 11    KE1           Kerosene
## 12    KE1           Kerosene
## 13    KE2           Kerosene
## 14  KE(1)           Kerosene
## 15  KE(2)           Kerosene
  source('../r_scripts/load.R')
## Loading required package: pacman
## Warning: package 'tcltk' is not available (for R version 3.4.4)
## Warning: package 'tcltk' is a base package, and should not be updated
## Bioconductor version 3.6 (BiocInstaller 1.28.0), ?biocLite for help
## 
## tcltk installed
## Warning in pacman::p_load(plyr, purrr, reshape2, reshape, devtools, data.table, : Failed to install/load:
## tcltk
  source("../r_scripts/functions.R")
  source("../r_scripts/load_data.r")
  source("../r_scripts/plots.R")
  source("../r_scripts/filter_sum_data.R")

Import temperature data and metadata files

Tidy

  • add household id information, get metadata from metadata file and from file names, depending on country
#Import thermocouple data time series output from Sumsarizer.
#datetime_placed is currently based on the metadata.  Flags data as good/bad based on the bad_files and HHID_remove variables.  Those are reapplied directly to the cooking events later, and filtered out if bad.
  if ( reimport_data == TRUE) {
      sumsarized_filtered <- filter_sumsarized(sumsarized,metadata,bad_files,HHID_remove,project_name,stove_codes) #HHID is grabbed from the filename.
          saveRDS(sumsarized_filtered, file ="../r_files/sumsarized_filtered.RDS")
  } else {
      sumsarized_filtered <- readRDS("../r_files/sumsarized_filtered.RDS") #
  }
  • Form cooking events from raw sumsarizer output
  • Group distinct cooking events together. If they are within cooking_group minutes of each other.
  • Only need this for data that went through the web-based sumsarizer, where events are not made automatically.
# # start counting up for cooking events.  Add columns for start and stop times of cooking events, and keep the hhid, loggerid, stove type, field group.  Keep only cooking event time points.  Need a case for start (if i = 1), if data point is within 30 minutes of the last one, if data point is greater than 30 minutes from the last one.

# #Initialize the cooking_events frame.
 cooking_events <- data.frame(start_time=as.POSIXct(character()),
                    end_time=as.POSIXct(character()), group=factor(),  HHID=factor(),
                    logger_id=factor(),stove=factor(), logging_duration_days=as.numeric(),
                    datetime_placed = as.POSIXct(character()), datetime_removal = as.POSIXct(character()),
                    file_indices = as.numeric(), filename=character(),fullsumsarizer_filename=character(),comments=character(),
                    qc_dates=character(),use_flag = as.logical())

 #for each SUM data file
 for (i in unique(sumsarized_filtered$file_indices)) {
   #Grab data from file i, and keep only the entries that are marked as cooking
   temp <- dplyr::filter(sumsarized_filtered,file_indices == i) %>%
      dplyr::filter(state == TRUE) %>% dplyr::filter(!duplicated(datetime)) 
   qc_temp <- "ok" #Default to ok data quality, gets demoted based on later checks.

   if (dim(temp)[1]>1 && any(temp$state==TRUE)) {
      min_time_file = min(temp$datetime)
      max_time_file = max(temp$datetime)
      time_difference <- as.numeric(difftime(temp$datetime,lag(temp$datetime),units="mins"))
      time_difference <- time_difference[!is.na(time_difference)] #
     
      breakstart <- c(0,which((time_difference>cooking_group) == TRUE))+1 #Start of a cooking event
      breakend <- c(which((time_difference>cooking_group) == TRUE),
          if (tail(temp$state,n=1) == TRUE){dim(temp)[1]}) #End of cooking event. 
        #Tail part is in case the time series ends while still cooking...need to account for th

      #Organize/check/fix datetimes of sum placements and removals. If there is a start and end time available for the monitoring period, use it to keep the data from the file.  Disregard this if the datetime_removal is NA, since it means we don't have a fixed known end date.  In this case we assume the end of the file is the end of the monitoring preiod and keep all the data from the given file.  Provide the start and end date in the event-building loop below.
       if (max_time_file>end_date_range | min_time_file<start_date_range) {   #datetime_placed is changed to the local file value if it is below the start_date_range, and datetime_placed is too, according to the end_date_range
             datetime_placed_temp = min_time_file
             datetime_removal_temp = max_time_file 
             qc_temp <- "out_of_placement_range" #These get filtered out, assuming it represents poorly time formatted data.
       } else if (is.na(as.POSIXct(temp$datetime_removal[1])) | is.na(as.POSIXct(temp$datetime_placed[1]))){  #If date is NA, use the file's dates.  They have already been midnight-trimmed in the load_data.r function.
             datetime_placed_temp = min_time_file
             datetime_removal_temp = max_time_file
             qc_temp <- "NA_metadata"
       } else if (min_time_file> as.POSIXct(temp$datetime_placed[1])) {  #If placement time is before time of first data point, switch to first data point.
             datetime_placed_temp = min_time_file
             datetime_removal_temp = max_time_file
             qc_temp <- "placement_before_data"
       } else if (as.POSIXct(min(temp$datetime_placed))> as.POSIXct(max(temp$datetime_removal))) {  #If placement time is greater than the datetime placed, switch them, it's a mistake.
             datetime_placed_temp = min_time_file
             datetime_removal_temp = max_time_file 
             qc_temp <- "placement_greaterthan_removal"
       } else { #If not NA, a value must have been found in the meta data, use it.
             datetime_placed_temp = as.POSIXct(min(temp$datetime_placed))
             datetime_removal_temp = as.POSIXct(max(temp$datetime_removal))
             qc_temp <- "metadata_dates_used"
       }      
      
      #Add cooking events to the cooking_events data frame.
      cooking_events <- rbind(cooking_events,
                  data.frame(start_time= as.POSIXct(temp$datetime[breakstart]),
                  end_time=as.POSIXct(temp$datetime[breakend]), 
                  group=as.factor(temp$group[breakstart]),
                  HHID=as.factor(temp$HHID[breakstart]),
                  logger_id=factor(temp$logger_id[breakstart]),
                  stove=factor(temp$stove[breakstart]),
                  logging_duration_days = as.numeric(difftime(datetime_removal_temp,datetime_placed_temp,units = "days")),
                  datetime_placed = datetime_placed_temp,
                  datetime_removal = datetime_removal_temp,
                  file_indices = temp$file_indices[breakstart], 
                  filename = temp$filename[breakstart],
                  fullsumsarizer_filename = temp$fullsumsarizer_filename[breakstart],
                  comments = temp$comments[1],
                  use_flag=as.logical(rep(1,length(breakstart)[1])),
                  qc_dates = qc_temp))
    } else{
         #If no cooking events are found, still create an entry, though with the use flag as FALSE, so 
         #that we know that there was data collected and zero events in that period.  Set the use_flag to true here to differntiate from the too-short cooking events.
       temp <- dplyr::filter(sumsarized_filtered,file_indices == i)  #Create new temp here so 
       #we can get info about the sample that does not have cooking events.
       cooking_events <- rbind(cooking_events,
                  data.frame(start_time=as.POSIXct(temp$datetime[1]),
                  end_time=as.POSIXct(temp$datetime[1]), 
                  group=as.factor(temp$group[1]),
                  HHID=as.factor(temp$HHID[1]), 
                  logger_id=factor(temp$logger_id[1]),
                  stove=factor(temp$stove[1]), 
                  logging_duration_days = as.numeric(difftime(max(temp$datetime),min(temp$datetime),units = "days")),
                  datetime_placed = min(temp$datetime),
                  datetime_removal = max(temp$datetime),
                  file_indices = temp$file_indices[1], 
                  filename = temp$filename[1],
                  fullsumsarizer_filename = temp$fullsumsarizer_filename[1],
                  comments = temp$comments[1],
                  qc_dates = qc_temp,
                  use_flag=FALSE))
    }
   
 }


#Clean up cooking events. Add better variable names for stoves, and units.
 cooking_events <- dplyr::left_join(cooking_events,
                                              dplyr::select(stove_codes,stove,stove_descriptions),by = "stove") %>%
                          dplyr::mutate(units = "degrees Celsius") %>% #Define units as degrees C
                          dplyr::mutate(duration_minutes = as.numeric(difftime(end_time,start_time,units = "mins"))) %>%
                          dplyr::mutate(qc = if_else(grepl(bad_files,fullsumsarizer_filename,ignore.case=TRUE),"excluded_file_list","ok")) %>% #Flag data from bad files
                          dplyr::mutate(qc = if_else(grepl(HHID_remove,HHID),"excluded_household_list",qc)) %>% #Flag data from HHID's that should be removed.
                          dplyr::mutate(qc = if_else(grepl("amb",fullsumsarizer_filename,ignore.case=TRUE),"ambient",qc))  #Flag data from HHID's that should be removed.

Remove data from bad files:

  • merge flags with data *Perform filtering on cooking events variable to get to the subset we want.
  #Remove short events, while keeping entries from files with no events.
  ok_cooking_events_unfiltered <-  dplyr::mutate(cooking_events,qc,if_else(is.na(stove_descriptions),"NA_stove_description",qc)) %>%
                          #Filter out events shorter than the threshold, while keeping the entries that 
                          #have no uses in the deployments. At this point all events except empty files have use_flag = TRUE.
                          dplyr::mutate(if_else(grepl("out_of_placement_range",qc_dates),"out_of_placement_range",qc)) %>%
                          dplyr::select(filename,fullsumsarizer_filename,start_time,end_time,duration_minutes,
                                HHID,stove,logger_id,group,
                                stove_descriptions,stove,logging_duration_days,datetime_placed,
                                datetime_removal, units,comments,use_flag,qc) %>%
                          dplyr::mutate(start_hour = hour(start_time) + minute(start_time)/60) %>%
                          dplyr::mutate(month_year = format(start_time,"%b-%y")) %>%
                          dplyr::mutate(month_year = factor(month_year, unique(month_year), ordered=TRUE)) %>%
                          dplyr::mutate(day_month_year = as.Date(start_time)) %>%
                          dplyr::mutate(week_year = format(start_time,"%V-%y")) %>%
                          dplyr::mutate(day_of_week = as.factor(weekdays(start_time))) %>%
                          dplyr::mutate(day_of_week = factor(day_of_week, 
                                     levels = c('Monday','Tuesday','Wednesday','Thursday',
                                                'Friday','Saturday','Sunday'))) %>%
                          dplyr::arrange(desc(datetime_removal)) %>%  #Sort so we toss the earlier end dates when deleting distinct values.
                          dplyr::distinct(start_time,duration_minutes,HHID,stove_descriptions, .keep_all = TRUE) %>% 
                          #Handle cases that have duplicated events due to overlapping files. Keep only distinct ones
                          dplyr::mutate(datetime_placed = floor_date(datetime_placed,"minute")) %>%
                          dplyr::mutate(qc=if_else(logging_duration_days < logging_duration_minimum,"short_file_duration",qc)) %>%#Each file must be longer than this many days
                          dplyr::arrange(HHID) %>%
                          dplyr::mutate(qc=if_else(is.na(HHID),"NA_HHID",qc)) %>%
                          dplyr::mutate(qc=if_else(is.na(datetime_placed),"NA_datetime_placed",qc)) 

ok_cooking_events <- dplyr::filter(ok_cooking_events_unfiltered,grepl("ok",qc)) %>% #Keep only data marked 'ok'
                          droplevels() #Getting rid of extra levels whos data was filtered out, so unique doesn't freak out.

#Get list of files removed, and reasons why:

goodfilenames <- paste(unique(ok_cooking_events$fullsumsarizer_filename),collapse = "|")
list_of_bad_files <-dplyr::filter(ok_cooking_events_unfiltered,!grepl(goodfilenames,fullsumsarizer_filename)) %>%
                          dplyr::select(fullsumsarizer_filename,start_time,qc,HHID,logging_duration_days,datetime_placed,stove_descriptions)
print(list_of_bad_files)
##                          fullsumsarizer_filename          start_time
## 1             DL9_corrected_CC/AKO_01AMB (B).csv 2018-02-04 00:04:01
## 2              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-10 14:57:01
## 3              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-10 21:17:01
## 4              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-11 09:27:01
## 5              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-11 19:37:01
## 6              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-12 06:27:01
## 7              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-13 06:17:01
## 8              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-13 19:37:01
## 9              DL9_corrected_CC/AKO_01CC (B).csv 2018-02-16 14:27:01
## 10             DL9_corrected_CC/AKO_01CC (B).csv 2018-02-16 19:57:01
## 11             DL9_corrected_CC/AKO_01CC (B).csv 2018-02-17 14:17:01
## 12             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-04 09:52:01
## 13             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-04 20:22:01
## 14             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-06 20:02:01
## 15             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-07 06:52:01
## 16             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-07 10:12:01
## 17             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-07 14:52:01
## 18             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-09 19:32:01
## 19             DL9_corrected_KE/AKO_01KE (B).csv 2018-02-11 09:22:01
## 20   TIMESTAMP CORRECTED CC/AKO_01AMB(B)_DL7.csv 2018-01-07 00:08:01
## 21    TIMESTAMP CORRECTED CC/AKO_01CC(B)_DL7.csv 2018-01-07 00:03:01
## 22    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-07 06:46:01
## 23    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-07 19:46:01
## 24    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-08 21:56:01
## 25    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-09 19:16:01
## 26    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-10 19:46:01
## 27    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-15 14:46:01
## 28    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-15 19:16:01
## 29    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-15 22:26:01
## 30    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-16 13:46:01
## 31    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-17 10:36:01
## 32    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-17 15:56:01
## 33    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-19 09:56:01
## 34    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-19 12:16:01
## 35    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-19 17:56:01
## 36    TIMESTAMP CORRECTED KE/AKO_01KE(B)_DL7.csv 2018-01-19 21:16:01
## 37         DL6_corrected_CC/AKO_01AMB(B)_DL6.csv 2017-12-10 00:04:01
## 38          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-10 06:33:01
## 39          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-10 10:13:01
## 40          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-11 06:53:01
## 41          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-11 10:43:01
## 42          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-11 15:13:01
## 43          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-12 05:53:01
## 44          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-12 14:03:01
## 45          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-12 16:43:01
## 46          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-12 19:23:01
## 47          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-13 06:53:01
## 48          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-13 17:03:01
## 49          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-16 10:23:01
## 50          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-16 13:43:01
## 51          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-17 10:53:01
## 52          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-17 14:53:01
## 53          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-19 16:53:01
## 54          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-20 14:03:01
## 55          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-20 16:53:01
## 56          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-21 18:13:01
## 57          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-22 15:53:01
## 58          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-23 10:13:01
## 59          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-23 13:43:01
## 60          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-23 19:53:01
## 61          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-24 10:13:01
## 62          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-24 18:13:01
## 63          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-25 09:13:01
## 64          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-26 10:23:01
## 65          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-26 15:23:01
## 66          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-26 21:53:01
## 67          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-27 07:13:01
## 68          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-27 10:33:01
## 69          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-27 12:23:01
## 70          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-29 14:53:01
## 71          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-29 17:03:01
## 72          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-30 19:13:01
## 73          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2017-12-31 19:03:01
## 74          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-01 10:13:01
## 75          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-01 12:53:01
## 76          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-02 15:13:01
## 77          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-03 10:53:01
## 78          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-03 14:43:01
## 79          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-03 19:13:01
## 80          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-04 05:53:01
## 81          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-04 09:43:01
## 82          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-04 12:53:01
## 83          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-04 19:03:01
## 84          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-04 21:03:01
## 85          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-05 05:53:01
## 86          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-05 14:13:01
## 87          DL6_corrected_KE/AKO_01KE(B)_DL6.csv 2018-01-05 19:53:01
## 88          DL6_corrected_CC/AKO_01CC(B)_DL6.csv 2017-12-25 12:20:01
## 89          DL6_corrected_CC/AKO_01CC(B)_DL6.csv 2017-12-25 13:30:01
## 90          DL6_corrected_CC/AKO_01CC(B)_DL6.csv 2017-12-25 16:10:01
## 91          DL6_corrected_CC/AKO_01CC(B)_DL6.csv 2017-12-25 21:00:01
## 92          DL6_corrected_CC/AKO_01CC(B)_DL6.csv 2017-12-26 09:20:01
## 93             DL5_corrected_CC/AKO_01CC_DL5.csv 2017-11-30 00:09:01
## 94            DL5_corrected_CC/AKO_01AMB_DL5.csv 2017-11-30 00:06:01
## 95             DL5_corrected_KE/AKO_01KE_DL5.csv 2017-11-30 05:52:01
## 96             DL5_corrected_KE/AKO_01KE_DL5.csv 2017-11-30 17:42:01
## 97             DL5_corrected_KE/AKO_01KE_DL5.csv 2017-11-30 19:22:01
## 98             DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-01 07:22:01
## 99             DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-01 08:52:01
## 100            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-01 14:42:01
## 101            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-03 10:12:01
## 102            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-05 13:52:01
## 103            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-05 16:12:01
## 104            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-05 19:02:01
## 105            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-07 16:22:01
## 106            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-07 18:32:01
## 107            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-07 20:42:01
## 108            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 06:32:01
## 109            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 07:52:01
## 110            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 09:52:01
## 111            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 12:52:01
## 112            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 17:12:01
## 113            DL5_corrected_KE/AKO_01KE_DL5.csv 2017-12-08 22:02:01
## 114             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 02:49:01
## 115             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 08:09:01
## 116             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 12:59:01
## 117             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 16:09:01
## 118             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 18:39:01
## 119             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-02-12 19:39:01
## 120             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 00:29:01
## 121             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 01:29:01
## 122             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 05:59:01
## 123             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 08:09:01
## 124             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 09:09:01
## 125             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 11:09:01
## 126             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 16:19:01
## 127             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 18:49:01
## 128             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-03-12 21:09:01
## 129             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 00:09:01
## 130             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 05:39:01
## 131             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 07:39:01
## 132             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 11:09:01
## 133             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 15:09:01
## 134             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-04-12 18:49:01
## 135             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 00:49:01
## 136             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 05:09:01
## 137             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 07:39:01
## 138             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 11:09:01
## 139             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 13:39:01
## 140             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-05-12 16:49:01
## 141             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-06-12 02:49:01
## 142             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-06-12 13:09:01
## 143             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-06-12 15:39:01
## 144             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-06-12 16:39:01
## 145             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-07-12 00:19:01
## 146             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-07-12 02:49:01
## 147             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-07-12 08:19:01
## 148             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-07-12 13:19:01
## 149             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-07-12 21:49:01
## 150             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-08-12 00:59:01
## 151             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-08-12 09:39:01
## 152             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-08-12 13:09:01
## 153             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-08-12 15:19:01
## 154             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-08-12 21:49:01
## 155             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-09-12 04:59:01
## 156             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-09-12 06:39:01
## 157             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 11:09:01
## 158             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 12:09:01
## 159             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 15:39:01
## 160             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 16:29:01
## 161             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 18:29:01
## 162             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 20:09:01
## 163             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-25 22:29:01
## 164             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 00:59:01
## 165             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 03:49:01
## 166             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 05:09:01
## 167             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 06:39:01
## 168             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 08:39:01
## 169             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 15:09:01
## 170             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 17:19:01
## 171             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 18:59:01
## 172             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-26 22:09:01
## 173             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-27 02:19:01
## 174             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-27 05:59:01
## 175             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-27 10:09:01
## 176             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-27 14:39:01
## 177             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-27 20:09:01
## 178             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 05:09:01
## 179             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 07:19:01
## 180             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 11:39:01
## 181             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 16:49:01
## 182             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 18:29:01
## 183             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-28 20:39:01
## 184             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 02:29:01
## 185             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 06:39:01
## 186             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 08:19:01
## 187             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 09:09:01
## 188             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 11:39:01
## 189             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 13:39:01
## 190             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 15:09:01
## 191             AKOKA DOWNLOAD 5_CC/AKO_01CC.csv 2017-11-29 21:49:01
## 192            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-02-12 10:16:01
## 193            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-02-12 17:26:01
## 194            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-02-12 21:26:01
## 195            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 01:16:01
## 196            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 06:26:01
## 197            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 10:16:01
## 198            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 11:46:01
## 199            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 14:06:01
## 200            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 19:06:01
## 201            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 19:46:01
## 202            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-03-12 22:36:01
## 203            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 02:06:01
## 204            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 04:26:01
## 205            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 06:46:01
## 206            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 08:06:01
## 207            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 10:46:01
## 208            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 11:46:01
## 209            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 14:46:01
## 210            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 16:16:01
## 211            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-04-12 18:26:01
## 212            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 00:36:01
## 213            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 14:16:01
## 214            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 16:26:01
## 215            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 17:26:01
## 216            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 18:26:01
## 217            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 19:06:01
## 218            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 21:36:01
## 219            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-05-12 22:16:01
## 220            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-06-12 12:46:01
## 221            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-06-12 14:16:01
## 222            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-06-12 15:46:01
## 223            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-06-12 17:26:01
## 224            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 02:36:01
## 225            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 05:36:01
## 226            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 11:16:01
## 227            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 14:26:01
## 228            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 16:16:01
## 229            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 18:06:01
## 230            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-07-12 22:36:01
## 231            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 00:26:01
## 232            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 08:36:01
## 233            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 09:16:01
## 234            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 10:16:01
## 235            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 12:46:01
## 236            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 13:56:01
## 237            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 17:16:01
## 238            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 19:56:01
## 239            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-08-12 22:36:01
## 240            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 01:26:01
## 241            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 02:46:01
## 242            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 05:06:01
## 243            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 06:26:01
## 244            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 07:16:01
## 245            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-09-12 09:06:01
## 246            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 11:16:01
## 247            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 12:16:01
## 248            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 16:46:01
## 249            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 17:36:01
## 250            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 19:16:01
## 251            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 20:56:01
## 252            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-25 22:36:01
## 253            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 03:26:01
## 254            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 06:26:01
## 255            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 08:06:01
## 256            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 09:46:01
## 257            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 11:46:01
## 258            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 13:16:01
## 259            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 15:16:01
## 260            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 20:36:01
## 261            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-26 22:06:01
## 262            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 00:36:01
## 263            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 02:26:01
## 264            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 04:26:01
## 265            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 06:56:01
## 266            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 08:06:01
## 267            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 10:16:01
## 268            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 12:16:01
## 269            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-27 22:06:01
## 270            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 05:06:01
## 271            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 08:06:01
## 272            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 09:46:01
## 273            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 12:16:01
## 274            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 13:16:01
## 275            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 15:46:01
## 276            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 17:36:01
## 277            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 20:36:01
## 278            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-28 22:26:01
## 279            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 00:06:01
## 280            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 05:06:01
## 281            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 10:46:01
## 282            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 12:16:01
## 283            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 13:16:01
## 284            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 19:36:01
## 285            AKOKA DOWNLOAD 5_CC/AKO_01AMB.csv 2017-11-29 22:26:01
## 286             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 07:22:01
## 287             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 08:22:01
## 288             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 10:52:01
## 289             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 13:22:01
## 290             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 15:12:01
## 291             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 16:22:01
## 292             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 17:52:01
## 293             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-02-12 18:52:01
## 294             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 00:52:01
## 295             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 01:32:01
## 296             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 09:42:01
## 297             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 14:52:01
## 298             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 16:22:01
## 299             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 17:42:01
## 300             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 18:52:01
## 301             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 20:52:01
## 302             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-03-12 22:42:01
## 303             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 01:52:01
## 304             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 06:22:01
## 305             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 11:52:01
## 306             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 13:32:01
## 307             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 18:22:01
## 308             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 20:32:01
## 309             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-04-12 23:22:01
## 310             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-05-12 01:52:01
## 311             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-05-12 06:12:01
## 312             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-05-12 07:52:01
## 313             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-05-12 13:32:01
## 314             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-05-12 23:22:01
## 315             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 06:12:01
## 316             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 10:12:01
## 317             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 14:12:01
## 318             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 16:42:01
## 319             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 18:42:01
## 320             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-06-12 23:52:01
## 321             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 00:02:01
## 322             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 06:42:01
## 323             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 10:12:01
## 324             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 12:42:01
## 325             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 16:12:01
## 326             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-07-12 23:22:01
## 327             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 06:12:01
## 328             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 09:42:01
## 329             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 11:52:01
## 330             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 12:42:01
## 331             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 16:42:01
## 332             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-08-12 23:52:01
## 333             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-09-12 00:02:01
## 334             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-09-12 05:22:01
## 335             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-09-12 06:42:01
## 336             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-09-12 08:12:01
## 337             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-25 12:52:01
## 338             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-25 15:52:01
## 339             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-25 18:22:01
## 340             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-25 20:52:01
## 341             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 01:22:01
## 342             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 04:22:01
## 343             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 07:22:01
## 344             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 08:22:01
## 345             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 09:12:01
## 346             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 14:42:01
## 347             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-26 17:52:01
## 348             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 06:12:01
## 349             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 10:12:01
## 350             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 12:22:01
## 351             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 15:12:01
## 352             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 17:22:01
## 353             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-27 18:42:01
## 354             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 06:22:01
## 355             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 07:52:01
## 356             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 08:52:01
## 357             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 12:22:01
## 358             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 17:22:01
## 359             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 18:52:01
## 360             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 19:42:01
## 361             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 21:22:01
## 362             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 22:12:01
## 363             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-28 23:52:01
## 364             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-29 02:22:01
## 365             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-29 08:42:01
## 366             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-29 11:52:01
## 367             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-29 15:12:01
## 368             AKOKA DOWNLOAD 5_KE/AKO_01KE.csv 2017-11-29 18:52:01
## 369      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-15 11:59:01
## 370      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-16 07:49:01
## 371      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-16 18:29:01
## 372      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-17 09:49:01
## 373      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-17 14:59:01
## 374      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-17 17:39:01
## 375      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-17 18:49:01
## 376      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-18 08:09:01
## 377      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-18 13:09:01
## 378      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-20 14:19:01
## 379      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-23 20:59:01
## 380      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-24 15:29:01
## 381      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-24 17:19:01
## 382      Akoka fouth download CC/AKO_01CC(B).csv 2017-11-24 18:59:01
## 383     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-15 22:26:01
## 384     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-16 06:36:01
## 385     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-18 14:36:01
## 386     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-20 06:16:01
## 387     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-20 15:26:01
## 388     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-20 16:56:01
## 389     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-21 06:36:01
## 390     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-21 10:36:01
## 391     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-21 18:46:01
## 392     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-21 20:36:01
## 393     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-22 06:36:01
## 394     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-22 10:26:01
## 395     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-22 19:46:01
## 396     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-23 09:16:01
## 397     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-23 15:46:01
## 398     Akoka fourth download KE/AKO_01KE(B).csv 2017-11-23 19:46:01
## 399  TIMESTAMP CORRECTED CC/AKO_01(B)AMB_DL8.csv 2018-01-21 00:04:01
## 400   TIMESTAMP CORRECTED CC/AKO_01(B)CC_DL8.csv 2018-01-21 00:02:01
## 401   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-21 09:49:01
## 402   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-21 18:49:01
## 403   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-22 13:49:01
## 404   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-22 21:19:01
## 405   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-23 19:29:01
## 406   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-24 20:19:01
## 407   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-25 16:19:01
## 408   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-26 14:49:01
## 409   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-26 18:19:01
## 410   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-27 08:19:01
## 411   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-27 10:39:01
## 412   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-27 17:49:01
## 413   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-27 19:39:01
## 414   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-28 19:19:01
## 415   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-29 15:19:01
## 416   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-29 20:59:01
## 417   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-01-30 18:29:01
## 418   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-02-01 16:19:01
## 419   TIMESTAMP CORRECTED KE/AKO_01(B)KE_DL8.csv 2018-02-02 13:59:01
## 420           DL9_corrected_KE/AKO_02KE2 (B).csv 2018-02-04 00:07:01
## 421           DL9_corrected_KE/AKO_02KE1 (B).csv 2018-02-06 10:04:01
## 422           DL9_corrected_KE/AKO_02KE1 (B).csv 2018-02-17 15:44:01
## 423            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-04 07:52:01
## 424            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-04 10:42:01
## 425            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-04 12:52:01
## 426            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-04 14:32:01
## 427            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-05 09:42:01
## 428            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-05 16:52:01
## 429            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-05 17:32:01
## 430            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-05 21:32:01
## 431            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-06 18:12:01
## 432            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-06 21:22:01
## 433            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-07 09:32:01
## 434            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-10 16:22:01
## 435            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-11 05:52:01
## 436            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-11 07:32:01
## 437            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-11 15:52:01
## 438            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-12 17:32:01
## 439            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-13 18:02:01
## 440            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-14 09:02:01
## 441            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-14 10:02:01
## 442            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-15 19:02:01
## 443            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-16 05:52:01
## 444            DL9_corrected_CC/AKO_02CC (B).csv 2018-02-16 08:02:01
## 445  TIMESTAMP CORRECTED KE/AKO_02KE2(B)_DL7.csv 2018-01-07 00:06:01
## 446   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-07 05:49:01
## 447   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-07 08:19:01
## 448   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-08 19:49:01
## 449   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-09 12:19:01
## 450   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-10 07:19:01
## 451   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-12 11:39:01
## 452   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-12 12:49:01
## 453   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-12 18:29:01
## 454   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-13 08:19:01
## 455   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-13 20:19:01
## 456   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-14 07:19:01
## 457   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-14 15:49:01
## 458   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-14 20:49:01
## 459   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-15 07:39:01
## 460   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-15 15:19:01
## 461   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-15 21:19:01
## 462   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-16 08:09:01
## 463   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-16 10:49:01
## 464   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-16 23:09:01
## 465   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-18 10:09:01
## 466   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-19 08:09:01
## 467   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-19 09:59:01
## 468   TIMESTAMP CORRECTED CC/AKO_02CC(B)_DL7.csv 2018-01-19 13:39:01
## 469  TIMESTAMP CORRECTED KE/AKO_02KE1(B)_DL7.csv 2018-01-11 17:42:01
## 470  TIMESTAMP CORRECTED KE/AKO_02KE1(B)_DL7.csv 2018-01-12 08:02:01
## 471        DL6_corrected_KE/AKO_02KE2(B)_DL6.csv 2017-12-10 00:04:01
## 472         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-10 07:12:01
## 473         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-10 14:52:01
## 474         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-11 07:42:01
## 475         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-12 10:02:01
## 476         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-13 11:12:01
## 477         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-14 08:22:01
## 478         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-14 15:52:01
## 479         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-15 00:22:01
## 480         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-15 11:42:01
## 481         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-15 16:32:01
## 482         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-15 19:52:01
## 483         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-16 09:52:01
## 484         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-16 11:12:01
## 485         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-16 12:32:01
## 486         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-16 17:52:01
## 487         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-17 05:22:01
## 488         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-17 15:02:01
## 489         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-18 13:22:01
## 490         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-18 19:32:01
## 491         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-19 12:02:01
## 492         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-20 11:32:01
## 493         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-21 10:32:01
## 494         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-21 11:42:01
## 495         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-21 12:52:01
## 496         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-21 14:32:01
## 497         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-21 18:22:01
## 498         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-22 09:42:01
## 499         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-22 15:12:01
## 500         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-24 09:42:01
## 501         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-26 09:32:01
## 502         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-26 10:22:01
## 503         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-26 11:52:01
## 504         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-26 17:02:01
## 505         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-27 15:32:01
## 506         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-27 16:42:01
## 507         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-28 09:52:01
## 508         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-28 12:32:01
## 509         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-28 15:42:01
## 510         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-28 16:42:01
## 511         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-28 20:02:01
## 512         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-29 11:02:01
## 513         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2017-12-30 12:12:01
## 514         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2018-01-04 11:22:01
## 515         DL6_corrected_CC/AKO_02CC(B)_DL6.csv 2018-01-05 12:22:01
## 516        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2017-12-31 06:15:01
## 517        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2017-12-31 13:55:01
## 518        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2017-12-31 18:35:01
## 519        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-01 08:35:01
## 520        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-02 09:35:01
## 521        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-02 17:35:01
## 522        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-03 09:45:01
## 523        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-03 12:25:01
## 524        DL6_corrected_KE/AKO_02KE1(B)_DL6.csv 2018-01-03 15:45:01
## 525           DL5_corrected_KE/AKO_02KE1_DL5.csv 2017-11-30 00:03:01
## 526           DL5_corrected_KE/AKO_02KE2_DL5.csv 2017-11-30 00:00:01
## 527            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-11-30 17:26:01
## 528            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-11-30 21:56:01
## 529            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-01 12:56:01
## 530            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-01 17:56:01
## 531            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-03 07:16:01
## 532            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-03 08:26:01
## 533            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-03 11:16:01
## 534            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-03 17:06:01
## 535            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-04 07:06:01
## 536            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-04 09:36:01
## 537            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-04 17:16:01
## 538            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-05 06:46:01
## 539            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-05 12:46:01
## 540            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-05 16:06:01
## 541            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-05 17:26:01
## 542            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-06 06:26:01
## 543            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-06 08:56:01
## 544            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-06 14:16:01
## 545            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-06 17:36:01
## 546            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-07 07:16:01
## 547            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-07 18:06:01
## 548            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-08 06:56:01
## 549            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-08 08:26:01
## 550            DL5_corrected_CC/AKO_02CC_DL5.csv 2017-12-08 09:46:01
## 551            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-02-12 08:40:01
## 552            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-02-12 09:50:01
## 553            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-02-12 16:50:01
## 554            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-02-12 18:30:01
## 555            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-02-12 23:40:01
## 556            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-03-12 15:20:01
## 557            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-04-12 00:10:01
## 558            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-04-12 12:00:01
## 559            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-05-12 06:30:01
## 560            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-05-12 10:50:01
## 561            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-05-12 13:20:01
## 562            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-06-12 02:40:01
## 563            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-06-12 06:40:01
## 564            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-06-12 09:20:01
## 565            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-06-12 14:50:01
## 566            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-07-12 04:40:01
## 567            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-07-12 07:40:01
## 568            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-07-12 14:40:01
## 569            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-07-12 20:40:01
## 570            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-07-12 22:00:01
## 571            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-08-12 07:30:01
## 572            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-08-12 09:20:01
## 573            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-09-12 03:30:01
## 574            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-09-12 08:50:01
## 575            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-09-12 10:20:01
## 576            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-25 10:30:01
## 577            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-25 15:40:01
## 578            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-26 05:40:01
## 579            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-26 10:50:01
## 580            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-26 14:50:01
## 581            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-26 19:40:01
## 582            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-27 01:10:01
## 583            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-27 06:40:01
## 584            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-27 15:20:01
## 585            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-27 17:20:01
## 586            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-28 06:40:01
## 587            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-28 09:50:01
## 588            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-28 19:10:01
## 589            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-29 14:50:01
## 590            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-29 18:50:01
## 591            AKOKA DOWNLOAD 5_KE/AKO_02KE2.csv 2017-11-29 23:00:01
## 592             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 05:46:01
## 593             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 07:46:01
## 594             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 08:56:01
## 595             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 14:36:01
## 596             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 15:46:01
## 597             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 19:16:01
## 598             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-02-12 20:46:01
## 599             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 01:46:01
## 600             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 03:06:01
## 601             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 05:46:01
## 602             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 07:06:01
## 603             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 08:16:01
## 604             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 09:56:01
## 605             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 10:56:01
## 606             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 15:56:01
## 607             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 17:06:01
## 608             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 18:16:01
## 609             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 19:16:01
## 610             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 20:16:01
## 611             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-03-12 23:16:01
## 612             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 06:16:01
## 613             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 08:26:01
## 614             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 09:26:01
## 615             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 11:56:01
## 616             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 13:36:01
## 617             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 14:26:01
## 618             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-04-12 20:46:01
## 619             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 05:46:01
## 620             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 06:46:01
## 621             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 08:56:01
## 622             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 10:26:01
## 623             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 13:56:01
## 624             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 14:56:01
## 625             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 22:46:01
## 626             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-05-12 23:56:01
## 627             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 00:06:01
## 628             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 05:16:01
## 629             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 12:36:01
## 630             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 14:06:01
## 631             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 16:16:01
## 632             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 17:16:01
## 633             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 20:16:01
## 634             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-06-12 23:16:01
## 635             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 02:16:01
## 636             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 05:16:01
## 637             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 06:06:01
## 638             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 09:26:01
## 639             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 13:46:01
## 640             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 16:46:01
## 641             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 19:16:01
## 642             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-07-12 20:46:01
## 643             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 00:06:01
## 644             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 06:16:01
## 645             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 08:06:01
## 646             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 09:36:01
## 647             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 11:56:01
## 648             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 16:06:01
## 649             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 17:16:01
## 650             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 19:46:01
## 651             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-08-12 21:46:01
## 652             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-09-12 01:46:01
## 653             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-09-12 06:16:01
## 654             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-09-12 07:16:01
## 655             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-09-12 10:16:01
## 656             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 10:26:01
## 657             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 13:36:01
## 658             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 16:16:01
## 659             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 17:46:01
## 660             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 21:46:01
## 661             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-25 22:36:01
## 662             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 02:46:01
## 663             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 06:56:01
## 664             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 08:46:01
## 665             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 09:36:01
## 666             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 10:46:01
## 667             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 12:56:01
## 668             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 14:36:01
## 669             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 15:46:01
## 670             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 19:46:01
## 671             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-26 22:56:01
## 672             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 01:46:01
## 673             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 04:46:01
## 674             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 07:36:01
## 675             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 08:46:01
## 676             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 13:06:01
## 677             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 14:26:01
## 678             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 18:36:01
## 679             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-27 21:46:01
## 680             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 01:16:01
## 681             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 03:46:01
## 682             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 06:26:01
## 683             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 07:16:01
## 684             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 08:06:01
## 685             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 15:56:01
## 686             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 17:36:01
## 687             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-28 20:16:01
## 688             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 06:46:01
## 689             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 08:26:01
## 690             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 09:26:01
## 691             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 12:26:01
## 692             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 14:06:01
## 693             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 16:06:01
## 694             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 17:16:01
## 695             AKOKA DOWNLOAD 5_CC/AKO_02CC.csv 2017-11-29 22:16:01
## 696            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-02-12 08:53:01
## 697            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-02-12 11:23:01
## 698            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-02-12 14:53:01
## 699            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 00:53:01
## 700            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 09:23:01
## 701            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 12:53:01
## 702            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 14:23:01
## 703            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 20:03:01
## 704            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-03-12 21:13:01
## 705            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 06:23:01
## 706            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 07:13:01
## 707            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 08:13:01
## 708            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 09:23:01
## 709            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 11:43:01
## 710            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 13:43:01
## 711            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 15:13:01
## 712            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 17:53:01
## 713            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-04-12 22:23:01
## 714            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 02:53:01
## 715            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 09:43:01
## 716            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 13:13:01
## 717            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 14:53:01
## 718            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 17:23:01
## 719            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-05-12 19:53:01
## 720            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-06-12 05:13:01
## 721            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-06-12 08:53:01
## 722            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-06-12 14:53:01
## 723            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-06-12 17:23:01
## 724            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-06-12 19:53:01
## 725            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-07-12 06:23:01
## 726            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-07-12 12:53:01
## 727            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-07-12 13:53:01
## 728            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-07-12 14:53:01
## 729            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-07-12 22:43:01
## 730            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-08-12 07:43:01
## 731            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-08-12 09:43:01
## 732            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-08-12 15:43:01
## 733            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-08-12 18:23:01
## 734            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-08-12 22:53:01
## 735            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-09-12 05:53:01
## 736            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-09-12 07:53:01
## 737            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-25 10:33:01
## 738            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-25 13:53:01
## 739            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-25 15:43:01
## 740            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 00:23:01
## 741            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 05:23:01
## 742            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 09:23:01
## 743            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 12:43:01
## 744            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 15:13:01
## 745            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 18:53:01
## 746            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-26 20:53:01
## 747            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-27 00:53:01
## 748            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-27 05:53:01
## 749            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-27 09:53:01
## 750            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-27 13:23:01
## 751            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-27 20:53:01
## 752            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-28 02:23:01
## 753            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-28 06:53:01
## 754            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-28 11:23:01
## 755            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-28 17:13:01
## 756            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-28 22:53:01
## 757            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-29 03:23:01
## 758            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-29 08:43:01
## 759            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-29 13:43:01
## 760            AKOKA DOWNLOAD 5_KE/AKO_02KE1.csv 2017-11-29 17:23:01
## 761    Akoka fourth download KE/AKO_02KE2(B).csv 2017-11-15 00:07:01
## 762    Akoka fourth download KE/AKO_02KE1(B).csv 2017-11-19 14:22:01
## 763    Akoka fourth download KE/AKO_02KE1(B).csv 2017-11-20 07:22:01
## 764    Akoka fourth download KE/AKO_02KE1(B).csv 2017-11-20 09:22:01
## 765    Akoka fourth download KE/AKO_02KE1(B).csv 2017-11-24 17:22:01
## 766      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-15 15:59:01
## 767      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-15 16:59:01
## 768      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-15 20:19:01
## 769      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-16 06:19:01
## 770      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-16 09:49:01
## 771      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-16 15:59:01
## 772      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-17 06:29:01
## 773      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-17 18:59:01
## 774      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-17 21:59:01
## 775      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-19 09:49:01
## 776      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-19 13:39:01
## 777      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-20 17:39:01
## 778      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-21 06:39:01
## 779      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-21 08:19:01
## 780      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-21 18:59:01
## 781      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-22 06:29:01
## 782      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-22 09:59:01
## 783      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-22 17:39:01
## 784      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-22 21:49:01
## 785      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-23 05:49:01
## 786      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-23 09:19:01
## 787      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-23 19:09:01
## 788      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-23 19:59:01
## 789      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-24 05:19:01
## 790      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-24 06:39:01
## 791      Akoka fouth download CC/AKO_02CC(B).csv 2017-11-24 16:49:01
## 792                      KE_DL2/AKO_02KE_DL2.csv 2017-10-15 18:54:01
## 793                      KE_DL2/AKO_02KE_DL2.csv 2017-10-16 09:14:01
## 794                      KE_DL2/AKO_02KE_DL2.csv 2017-10-16 16:54:01
## 795                      KE_DL2/AKO_02KE_DL2.csv 2017-10-17 10:24:01
## 796                      KE_DL2/AKO_02KE_DL2.csv 2017-10-17 15:24:01
## 797                      KE_DL2/AKO_02KE_DL2.csv 2017-10-17 19:34:01
## 798                      KE_DL2/AKO_02KE_DL2.csv 2017-10-18 08:54:01
## 799                      KE_DL2/AKO_02KE_DL2.csv 2017-10-18 15:54:01
## 800                      KE_DL2/AKO_02KE_DL2.csv 2017-10-19 08:54:01
## 801                      KE_DL2/AKO_02KE_DL2.csv 2017-10-21 18:24:01
## 802                      KE_DL2/AKO_02KE_DL2.csv 2017-10-22 09:44:01
## 803                      KE_DL2/AKO_02KE_DL2.csv 2017-10-22 18:14:01
## 804                      KE_DL2/AKO_02KE_DL2.csv 2017-10-23 09:24:01
## 805                      KE_DL2/AKO_02KE_DL2.csv 2017-10-24 18:24:01
## 806                      KE_DL2/AKO_02KE_DL2.csv 2017-10-25 16:14:01
## 807                      KE_DL2/AKO_02KE_DL2.csv 2017-10-26 09:04:01
## 808                      KE_DL2/AKO_02KE_DL2.csv 2017-10-26 15:54:01
## 809                      KE_DL2/AKO_02KE_DL2.csv 2017-10-26 17:24:01
## 810                      CC_DL2/AKO_02CC_DL2.csv 2017-10-15 09:50:01
## 811                      CC_DL2/AKO_02CC_DL2.csv 2017-10-15 11:30:01
## 812                      CC_DL2/AKO_02CC_DL2.csv 2017-10-15 19:20:01
## 813                      CC_DL2/AKO_02CC_DL2.csv 2017-10-16 17:20:01
## 814                      CC_DL2/AKO_02CC_DL2.csv 2017-10-17 11:10:01
## 815                      CC_DL2/AKO_02CC_DL2.csv 2017-10-18 16:20:01
## 816                      CC_DL2/AKO_02CC_DL2.csv 2017-10-19 15:10:01
## 817                      CC_DL2/AKO_02CC_DL2.csv 2017-10-19 16:50:01
## 818                      CC_DL2/AKO_02CC_DL2.csv 2017-10-20 09:30:01
## 819                      CC_DL2/AKO_02CC_DL2.csv 2017-10-20 11:50:01
## 820                      CC_DL2/AKO_02CC_DL2.csv 2017-10-21 09:30:01
## 821                      CC_DL2/AKO_02CC_DL2.csv 2017-10-21 12:10:01
## 822                      CC_DL2/AKO_02CC_DL2.csv 2017-10-21 18:40:01
## 823                      CC_DL2/AKO_02CC_DL2.csv 2017-10-22 10:50:01
## 824                      CC_DL2/AKO_02CC_DL2.csv 2017-10-22 18:40:01
## 825                      CC_DL2/AKO_02CC_DL2.csv 2017-10-23 18:20:01
## 826                      CC_DL2/AKO_02CC_DL2.csv 2017-10-24 06:10:01
## 827                      CC_DL2/AKO_02CC_DL2.csv 2017-10-24 10:10:01
## 828                      CC_DL2/AKO_02CC_DL2.csv 2017-10-24 11:30:01
## 829                      CC_DL2/AKO_02CC_DL2.csv 2017-10-26 09:10:01
## 830                      CC_DL2/AKO_02CC_DL2.csv 2017-10-26 10:30:01
## 831                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-16 06:18:01
## 832                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-16 19:28:01
## 833                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-17 06:28:01
## 834                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-17 18:48:01
## 835                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-18 06:18:01
## 836                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-18 20:48:01
## 837                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-19 06:18:01
## 838                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-19 21:18:01
## 839                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-20 06:18:01
## 840                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-20 20:08:01
## 841                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-21 14:38:01
## 842                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-22 13:58:01
## 843                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-22 18:48:01
## 844                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-23 06:18:01
## 845                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-23 19:18:01
## 846                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-24 06:28:01
## 847                    LPG_DL2/AKO_02LPG_DL2.csv 2017-10-25 05:48:01
## 848                             AKO_02CC_DL1.csv 2017-10-09 08:39:01
## 849                             AKO_02CC_DL1.csv 2017-10-10 11:49:01
## 850                             AKO_02CC_DL1.csv 2017-10-10 17:39:01
## 851                             AKO_02CC_DL1.csv 2017-10-11 21:39:01
## 852                             AKO_02CC_DL1.csv 2017-10-12 06:19:01
## 853                             AKO_02CC_DL1.csv 2017-10-12 08:59:01
## 854                             AKO_02CC_DL1.csv 2017-10-12 15:29:01
## 855                             AKO_02CC_DL1.csv 2017-10-12 18:59:01
## 856                             AKO_02CC_DL1.csv 2017-10-13 11:29:01
## 857                             AKO_02CC_DL1.csv 2017-10-13 19:19:01
## 858                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-09 12:43:01
## 859                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-10 11:53:01
## 860                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-10 12:43:01
## 861                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-10 19:53:01
## 862                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-10 21:03:01
## 863                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-11 06:23:01
## 864                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-11 20:43:01
## 865                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-12 06:33:01
## 866                    LPG_DL1/AKO_02LPG_DL1.csv 2017-10-13 06:33:01
## 867                             AKO_02KE_DL1.csv 2017-10-09 13:08:01
## 868                             AKO_02KE_DL1.csv 2017-10-10 14:38:01
## 869                             AKO_02KE_DL1.csv 2017-10-12 18:48:01
## 870  TIMESTAMP CORRECTED KE/AKO_02(B)KE2_DL8.csv 2018-01-21 00:09:01
## 871   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-21 09:32:01
## 872   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-21 15:22:01
## 873   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-21 17:12:01
## 874   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-22 06:12:01
## 875   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-22 07:22:01
## 876   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-22 18:52:01
## 877   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-23 07:32:01
## 878   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-23 11:52:01
## 879   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-23 16:12:01
## 880   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-23 19:12:01
## 881   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-23 22:52:01
## 882   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-24 11:42:01
## 883   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-24 15:02:01
## 884   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-01-25 14:02:01
## 885   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-02-01 13:42:01
## 886   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-02-01 16:52:01
## 887   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-02-02 07:32:01
## 888   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-02-02 11:42:01
## 889   TIMESTAMP CORRECTED CC/AKO_02(B)CC_DL8.csv 2018-02-02 21:02:01
## 890  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-28 20:46:01
## 891  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-29 06:16:01
## 892  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-30 07:06:01
## 893  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-30 16:36:01
## 894  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-30 21:26:01
## 895  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-31 12:16:01
## 896  TIMESTAMP CORRECTED KE/AKO_02(B)KE1_DL8.csv 2018-01-31 15:36:01
## 897            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-04 11:13:01
## 898            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-04 18:13:01
## 899            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-05 15:03:01
## 900            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-05 17:23:01
## 901            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-06 11:23:01
## 902            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-06 14:13:01
## 903            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-06 15:53:01
## 904            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-06 17:43:01
## 905            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-07 11:23:01
## 906            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-07 13:13:01
## 907            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-07 17:03:01
## 908            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-08 07:43:01
## 909            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-08 17:13:01
## 910            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 00:23:01
## 911            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 10:23:01
## 912            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 15:13:01
## 913            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 16:23:01
## 914            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 17:33:01
## 915            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-09 19:13:01
## 916            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-10 07:53:01
## 917            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-10 17:13:01
## 918            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-11 12:53:01
## 919            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-12 07:43:01
## 920            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-12 15:03:01
## 921            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-12 17:13:01
## 922            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-13 07:23:01
## 923            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-13 10:43:01
## 924            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-13 17:53:01
## 925            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-14 07:23:01
## 926            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-14 13:43:01
## 927            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-14 16:03:01
## 928            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-15 06:53:01
## 929            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-15 16:13:01
## 930            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-16 12:23:01
## 931            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-16 15:23:01
## 932            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-16 18:23:01
## 933            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-17 08:23:01
## 934            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-17 13:53:01
## 935            DL9_corrected_KE/AKO_03KE (B).csv 2018-02-17 15:53:01
## 936            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-04 00:05:01
## 937            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-04 09:05:01
## 938            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-04 11:45:01
## 939            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-04 17:45:01
## 940            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-04 18:45:01
## 941            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-05 01:05:01
## 942            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-05 08:25:01
## 943            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-05 09:15:01
## 944            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-05 11:55:01
## 945            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-05 14:45:01
## 946            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-06 01:45:01
## 947            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-06 06:35:01
## 948            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-06 07:55:01
## 949            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-06 11:45:01
## 950            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-07 06:35:01
## 951            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-07 07:55:01
## 952            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-08 06:45:01
## 953            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-09 00:15:01
## 954            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-09 06:45:01
## 955            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-09 07:45:01
## 956            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-09 14:05:01
## 957            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-09 18:55:01
## 958            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-10 09:45:01
## 959            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-10 14:45:01
## 960            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-10 18:25:01
## 961            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-11 00:55:01
## 962            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-11 09:15:01
## 963            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-11 12:35:01
## 964            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-11 17:35:01
## 965            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-12 06:15:01
## 966            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-12 11:45:01
## 967            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-13 11:45:01
## 968            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-13 15:35:01
## 969            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-13 23:55:01
## 970            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-14 07:05:01
## 971            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-14 08:55:01
## 972            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-14 18:15:01
## 973            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-15 10:05:01
## 974            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-16 06:35:01
## 975            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-16 07:25:01
## 976            DL9_corrected_CC/AKO_03CC (B).csv 2018-02-17 08:55:01
## 977   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-07 18:08:01
## 978   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-08 16:18:01
## 979   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-08 17:48:01
## 980   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-08 21:48:01
## 981   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-09 10:58:01
## 982   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-09 18:48:01
## 983   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-10 11:08:01
## 984   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-10 16:18:01
## 985   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-11 18:08:01
## 986   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-12 15:18:01
## 987   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-12 18:18:01
## 988   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-13 08:18:01
## 989   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-13 15:48:01
## 990   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-13 17:58:01
## 991   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-14 00:48:01
## 992   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-14 08:38:01
## 993   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-14 11:58:01
## 994   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-14 15:48:01
## 995   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-15 17:48:01
## 996   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-16 07:48:01
## 997   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-16 10:48:01
## 998   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-16 18:08:01
## 999   TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-17 17:38:01
## 1000  TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-18 08:08:01
## 1001  TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-18 17:38:01
## 1002  TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-19 12:48:01
## 1003  TIMESTAMP CORRECTED KE/AKO_03KE(B)_DL7.csv 2018-01-19 17:38:01
## 1004  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-07 00:06:01
## 1005  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-07 09:16:01
## 1006  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-07 11:06:01
## 1007  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-07 18:16:01
## 1008  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 00:16:01
## 1009  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 07:16:01
## 1010  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 08:36:01
## 1011  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 12:56:01
## 1012  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 17:26:01
## 1013  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-08 21:56:01
## 1014  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-09 07:06:01
## 1015  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-09 08:16:01
## 1016  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-09 11:46:01
## 1017  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-10 01:16:01
## 1018  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-10 07:46:01
## 1019  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-10 13:06:01
## 1020  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 00:16:01
## 1021  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 06:56:01
## 1022  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 09:46:01
## 1023  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 12:56:01
## 1024  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 18:06:01
## 1025  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 20:26:01
## 1026  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-11 23:46:01
## 1027  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-12 06:26:01
## 1028  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-12 08:16:01
## 1029  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-12 15:06:01
## 1030  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-13 08:46:01
## 1031  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-13 18:46:01
## 1032  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-14 11:56:01
## 1033  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-14 18:26:01
## 1034  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 00:06:01
## 1035  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 02:06:01
## 1036  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 07:16:01
## 1037  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 12:46:01
## 1038  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 13:36:01
## 1039  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-15 17:26:01
## 1040  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-16 01:26:01
## 1041  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-16 07:56:01
## 1042  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-16 15:46:01
## 1043  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-17 00:36:01
## 1044  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-17 06:56:01
## 1045  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-17 12:26:01
## 1046  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-17 13:16:01
## 1047  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-17 17:16:01
## 1048  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-18 10:26:01
## 1049  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-18 18:36:01
## 1050  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-19 06:16:01
## 1051  TIMESTAMP CORRECTED CC/AKO_03CC(B)_DL7.csv 2018-01-19 09:46:01
## 1052        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-10 07:20:01
## 1053        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-10 10:30:01
## 1054        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-10 17:40:01
## 1055        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-11 12:20:01
## 1056        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-11 16:10:01
## 1057        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-12 17:20:01
## 1058        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-13 07:50:01
## 1059        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-13 13:10:01
## 1060        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-13 14:40:01
## 1061        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-13 18:50:01
## 1062        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-14 07:50:01
## 1063        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-14 12:10:01
## 1064        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-14 17:40:01
## 1065        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-16 10:00:01
## 1066        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-16 15:50:01
## 1067        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-17 07:50:01
## 1068        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-17 10:20:01
## 1069        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-17 17:40:01
## 1070        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-18 09:00:01
## 1071        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-18 17:50:01
## 1072        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-19 00:10:01
## 1073        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-19 08:20:01
## 1074        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-19 11:00:01
## 1075        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-19 14:30:01
## 1076        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-19 18:10:01
## 1077        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-20 00:50:01
## 1078        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-20 08:20:01
## 1079        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-20 17:50:01
## 1080        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-21 08:50:01
## 1081        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-21 12:20:01
## 1082        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-21 18:10:01
## 1083        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-22 15:20:01
## 1084        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-23 08:20:01
## 1085        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-23 17:50:01
## 1086        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-24 08:00:01
## 1087        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-24 11:00:01
## 1088        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-24 15:40:01
## 1089        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-24 19:40:01
## 1090        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-25 09:40:01
## 1091        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-25 13:20:01
## 1092        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-25 19:10:01
## 1093        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-26 10:50:01
## 1094        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-26 12:50:01
## 1095        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-26 19:30:01
## 1096        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-27 08:50:01
## 1097        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-27 10:50:01
## 1098        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-27 13:20:01
## 1099        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-27 17:40:01
## 1100        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 01:40:01
## 1101        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 08:20:01
## 1102        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 09:50:01
## 1103        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 13:50:01
## 1104        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 15:30:01
## 1105        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-28 18:20:01
## 1106        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-29 08:20:01
## 1107        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-29 16:20:01
## 1108        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-29 18:10:01
## 1109        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-30 08:20:01
## 1110        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-30 14:50:01
## 1111        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-30 18:00:01
## 1112        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-31 00:50:01
## 1113        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-31 08:00:01
## 1114        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-31 14:50:01
## 1115        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2017-12-31 18:20:01
## 1116        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-01 08:40:01
## 1117        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-01 10:00:01
## 1118        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-01 18:50:01
## 1119        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-02 19:20:01
## 1120        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-03 09:20:01
## 1121        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-03 17:20:01
## 1122        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-04 08:40:01
## 1123        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-04 13:50:01
## 1124        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-04 17:50:01
## 1125        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-05 09:20:01
## 1126        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-05 13:00:01
## 1127        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-05 14:50:01
## 1128        DL6_corrected_KE/AKO_03KE(B)_DL6.csv 2018-01-05 18:00:01
## 1129        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-10 11:47:01
## 1130        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-10 14:47:01
## 1131        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-10 18:07:01
## 1132        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-11 00:07:01
## 1133        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-11 08:37:01
## 1134        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-12 00:47:01
## 1135        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-12 08:27:01
## 1136        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-12 11:57:01
## 1137        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-12 14:27:01
## 1138        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-13 01:07:01
## 1139        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-13 14:27:01
## 1140        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-14 19:07:01
## 1141        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-14 23:57:01
## 1142        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-15 08:07:01
## 1143        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-15 09:17:01
## 1144        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-15 11:37:01
## 1145        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-15 18:17:01
## 1146        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-16 01:27:01
## 1147        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-16 02:57:01
## 1148        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-16 09:17:01
## 1149        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-16 18:07:01
## 1150        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-17 00:57:01
## 1151        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-17 08:17:01
## 1152        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-17 11:27:01
## 1153        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-17 12:57:01
## 1154        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-17 23:57:01
## 1155        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-18 09:07:01
## 1156        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-18 15:07:01
## 1157        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-18 18:37:01
## 1158        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-20 14:27:01
## 1159        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-21 00:27:01
## 1160        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-21 07:47:01
## 1161        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-21 23:07:01
## 1162        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-22 01:57:01
## 1163        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-22 08:27:01
## 1164        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-23 02:27:01
## 1165        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-23 09:07:01
## 1166        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-23 13:07:01
## 1167        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 01:17:01
## 1168        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 09:17:01
## 1169        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 09:57:01
## 1170        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 13:47:01
## 1171        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 15:17:01
## 1172        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-24 16:47:01
## 1173        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-25 08:27:01
## 1174        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-25 11:17:01
## 1175        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-25 17:27:01
## 1176        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-25 19:07:01
## 1177        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-26 00:07:01
## 1178        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-26 08:57:01
## 1179        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-26 09:47:01
## 1180        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-26 10:37:01
## 1181        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-26 13:07:01
## 1182        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-27 00:57:01
## 1183        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-27 08:47:01
## 1184        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-27 11:27:01
## 1185        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-27 12:57:01
## 1186        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-27 14:27:01
## 1187        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-30 09:27:01
## 1188        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2017-12-31 14:47:01
## 1189        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-01 08:47:01
## 1190        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-01 14:27:01
## 1191        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-01 22:27:01
## 1192        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-02 08:27:01
## 1193        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-02 09:17:01
## 1194        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-03 01:07:01
## 1195        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-03 09:27:01
## 1196        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-03 12:07:01
## 1197        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-05 01:07:01
## 1198        DL6_corrected_CC/AKO_03CC(B)_DL6.csv 2018-01-05 09:37:01
## 1199           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-11-30 09:48:01
## 1200           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-11-30 17:18:01
## 1201           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-01 08:18:01
## 1202           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-02 11:38:01
## 1203           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-02 17:48:01
## 1204           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-03 17:18:01
## 1205           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-04 11:18:01
## 1206           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-05 14:48:01
## 1207           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-06 08:38:01
## 1208           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-06 13:18:01
## 1209           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-06 16:58:01
## 1210           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-07 08:18:01
## 1211           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-07 09:48:01
## 1212           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-07 11:18:01
## 1213           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-07 16:48:01
## 1214           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-08 00:48:01
## 1215           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-08 07:18:01
## 1216           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-08 11:18:01
## 1217           DL5_corrected_KE/AKO_03KE_DL5.csv 2017-12-08 15:48:01
## 1218           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-11-30 01:32:01
## 1219           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-11-30 06:32:01
## 1220           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-11-30 07:52:01
## 1221           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 07:52:01
## 1222           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 09:12:01
## 1223           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 14:32:01
## 1224           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 15:52:01
## 1225           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 17:22:01
## 1226           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-01 18:52:01
## 1227           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-02 07:52:01
## 1228           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-02 10:02:01
## 1229           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-02 11:22:01
## 1230           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-02 17:42:01
## 1231           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-03 00:52:01
## 1232           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-03 07:52:01
## 1233           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-03 09:02:01
## 1234           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-03 14:32:01
## 1235           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-03 23:42:01
## 1236           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-04 06:42:01
## 1237           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-04 07:42:01
## 1238           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-04 12:52:01
## 1239           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-04 17:22:01
## 1240           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 00:32:01
## 1241           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 06:22:01
## 1242           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 07:42:01
## 1243           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 13:52:01
## 1244           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 15:42:01
## 1245           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-05 17:32:01
## 1246           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-06 00:02:01
## 1247           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-06 07:22:01
## 1248           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-07 01:12:01
## 1249           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-07 08:22:01
## 1250           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-07 09:32:01
## 1251           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-08 00:02:01
## 1252           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-08 07:32:01
## 1253           DL5_corrected_CC/AKO_03CC_DL5.csv 2017-12-08 13:22:01
## 1254            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 00:42:01
## 1255            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 01:42:01
## 1256            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 02:22:01
## 1257            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 03:12:01
## 1258            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 07:02:01
## 1259            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 16:42:01
## 1260            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 19:42:01
## 1261            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 20:22:01
## 1262            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-02-12 22:52:01
## 1263            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 00:22:01
## 1264            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 03:22:01
## 1265            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 05:12:01
## 1266            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 05:52:01
## 1267            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 06:42:01
## 1268            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 07:22:01
## 1269            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 11:42:01
## 1270            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 12:52:01
## 1271            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 13:42:01
## 1272            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 15:22:01
## 1273            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 17:42:01
## 1274            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 22:12:01
## 1275            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-03-12 23:02:01
## 1276            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 00:02:01
## 1277            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 03:22:01
## 1278            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 04:22:01
## 1279            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 05:12:01
## 1280            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 05:52:01
## 1281            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 11:12:01
## 1282            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 12:12:01
## 1283            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 15:22:01
## 1284            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 16:12:01
## 1285            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 17:02:01
## 1286            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 18:22:01
## 1287            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 21:12:01
## 1288            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-04-12 23:12:01
## 1289            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 00:02:01
## 1290            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 03:22:01
## 1291            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 04:12:01
## 1292            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 05:52:01
## 1293            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 13:22:01
## 1294            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 21:52:01
## 1295            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-05-12 23:12:01
## 1296            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 00:02:01
## 1297            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 04:12:01
## 1298            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 07:02:01
## 1299            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 11:52:01
## 1300            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 13:02:01
## 1301            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 16:42:01
## 1302            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-06-12 21:52:01
## 1303            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 00:32:01
## 1304            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 01:52:01
## 1305            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 02:52:01
## 1306            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 03:42:01
## 1307            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 05:52:01
## 1308            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 08:02:01
## 1309            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 10:22:01
## 1310            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 12:22:01
## 1311            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 13:22:01
## 1312            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 19:42:01
## 1313            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 21:22:01
## 1314            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 22:12:01
## 1315            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-07-12 23:52:01
## 1316            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 00:02:01
## 1317            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 05:22:01
## 1318            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 06:52:01
## 1319            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 11:02:01
## 1320            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 12:12:01
## 1321            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 12:52:01
## 1322            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 15:52:01
## 1323            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 18:42:01
## 1324            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-08-12 20:52:01
## 1325            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-09-12 00:22:01
## 1326            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-09-12 07:42:01
## 1327            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-09-12 09:12:01
## 1328            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-09-12 10:32:01
## 1329            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 10:52:01
## 1330            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 12:12:01
## 1331            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 14:22:01
## 1332            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 18:52:01
## 1333            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 22:52:01
## 1334            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-25 23:42:01
## 1335            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 03:42:01
## 1336            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 08:02:01
## 1337            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 10:52:01
## 1338            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 12:42:01
## 1339            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 16:22:01
## 1340            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 17:12:01
## 1341            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 20:42:01
## 1342            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-26 23:52:01
## 1343            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 04:22:01
## 1344            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 05:12:01
## 1345            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 09:12:01
## 1346            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 11:22:01
## 1347            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 14:42:01
## 1348            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 16:52:01
## 1349            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 17:42:01
## 1350            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 19:12:01
## 1351            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 22:22:01
## 1352            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-27 23:42:01
## 1353            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 02:52:01
## 1354            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 03:42:01
## 1355            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 05:32:01
## 1356            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 09:32:01
## 1357            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 14:12:01
## 1358            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 16:22:01
## 1359            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 17:32:01
## 1360            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 18:42:01
## 1361            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-28 21:22:01
## 1362            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 00:12:01
## 1363            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 05:52:01
## 1364            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 07:22:01
## 1365            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 08:42:01
## 1366            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 10:12:01
## 1367            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 11:12:01
## 1368            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 14:22:01
## 1369            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 15:52:01
## 1370            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 18:02:01
## 1371            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 19:12:01
## 1372            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 22:22:01
## 1373            AKOKA DOWNLOAD 5_CC/AKO_03CC.csv 2017-11-29 23:22:01
## 1374            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 10:38:01
## 1375            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 11:58:01
## 1376            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 15:18:01
## 1377            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 17:08:01
## 1378            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 19:38:01
## 1379            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-02-12 20:18:01
## 1380            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-03-12 01:18:01
## 1381            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-03-12 03:08:01
## 1382            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-03-12 05:18:01
## 1383            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-03-12 16:48:01
## 1384            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-03-12 21:08:01
## 1385            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-04-12 00:48:01
## 1386            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-04-12 02:48:01
## 1387            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-04-12 10:58:01
## 1388            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-04-12 17:08:01
## 1389            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-05-12 04:18:01
## 1390            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-05-12 06:58:01
## 1391            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-05-12 14:08:01
## 1392            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-05-12 18:08:01
## 1393            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-05-12 23:18:01
## 1394            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-06-12 01:18:01
## 1395            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-06-12 07:48:01
## 1396            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-06-12 12:18:01
## 1397            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-06-12 16:18:01
## 1398            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-06-12 21:18:01
## 1399            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 04:38:01
## 1400            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 07:48:01
## 1401            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 11:38:01
## 1402            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 13:48:01
## 1403            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 15:18:01
## 1404            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 16:08:01
## 1405            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 21:48:01
## 1406            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-07-12 23:58:01
## 1407            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 00:08:01
## 1408            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 04:08:01
## 1409            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 05:48:01
## 1410            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 10:08:01
## 1411            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 15:18:01
## 1412            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 20:08:01
## 1413            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 21:08:01
## 1414            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-08-12 22:48:01
## 1415            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-09-12 02:08:01
## 1416            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-09-12 06:48:01
## 1417            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-25 10:58:01
## 1418            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-26 04:18:01
## 1419            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-26 06:18:01
## 1420            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-26 12:18:01
## 1421            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-26 12:58:01
## 1422            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-26 17:08:01
## 1423            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-27 05:08:01
## 1424            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-27 07:08:01
## 1425            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-27 11:28:01
## 1426            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-27 14:38:01
## 1427            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-27 17:58:01
## 1428            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 00:18:01
## 1429            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 02:08:01
## 1430            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 05:08:01
## 1431            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 09:48:01
## 1432            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 11:38:01
## 1433            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 15:18:01
## 1434            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-28 21:18:01
## 1435            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-29 15:18:01
## 1436            AKOKA DOWNLOAD 5_KE/AKO_03KE.csv 2017-11-29 21:38:01
## 1437     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 01:26:01
## 1438     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 06:36:01
## 1439     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 07:26:01
## 1440     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 11:16:01
## 1441     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 12:36:01
## 1442     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-15 17:56:01
## 1443     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-16 06:16:01
## 1444     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-16 11:26:01
## 1445     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-16 13:36:01
## 1446     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-16 17:46:01
## 1447     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-17 01:26:01
## 1448     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-17 07:26:01
## 1449     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-17 11:06:01
## 1450     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-17 16:46:01
## 1451     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-17 18:26:01
## 1452     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-18 07:46:01
## 1453     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-18 11:36:01
## 1454     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-18 17:46:01
## 1455     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-19 01:26:01
## 1456     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-19 07:46:01
## 1457     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-19 10:26:01
## 1458     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-20 02:06:01
## 1459     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-20 07:36:01
## 1460     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-20 11:46:01
## 1461     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-21 01:06:01
## 1462     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-21 06:16:01
## 1463     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-21 07:36:01
## 1464     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-21 10:46:01
## 1465     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-22 01:16:01
## 1466     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-22 07:36:01
## 1467     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-22 09:36:01
## 1468     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-22 14:46:01
## 1469     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-22 18:26:01
## 1470     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-23 06:16:01
## 1471     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-23 10:16:01
## 1472     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-23 17:46:01
## 1473     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-24 07:16:01
## 1474     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-24 15:06:01
## 1475     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-24 18:36:01
## 1476     Akoka fouth download CC/AKO_03CC(B).csv 2017-11-24 23:16:01
## 1477    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-15 09:52:01
## 1478    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-17 11:52:01
## 1479    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-19 08:52:01
## 1480    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-19 17:22:01
## 1481    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-20 18:12:01
## 1482    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-21 06:52:01
## 1483    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-21 13:12:01
## 1484    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-21 17:02:01
## 1485    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-22 01:32:01
## 1486    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-22 06:22:01
## 1487    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-22 09:52:01
## 1488    Akoka fourth download KE/AKO_03KE(B).csv 2017-11-23 09:22:01
## 1489                    CC_DL2/AKO_03AMB_DL2.csv 2017-10-15 00:07:01
## 1490                     KE_DL2/AKO_03KE_DL2.csv 2017-10-15 11:27:01
## 1491                     KE_DL2/AKO_03KE_DL2.csv 2017-10-15 19:47:01
## 1492                     KE_DL2/AKO_03KE_DL2.csv 2017-10-16 06:17:01
## 1493                     KE_DL2/AKO_03KE_DL2.csv 2017-10-16 09:37:01
## 1494                     KE_DL2/AKO_03KE_DL2.csv 2017-10-16 18:17:01
## 1495                     KE_DL2/AKO_03KE_DL2.csv 2017-10-17 06:17:01
## 1496                     KE_DL2/AKO_03KE_DL2.csv 2017-10-18 19:47:01
## 1497                     KE_DL2/AKO_03KE_DL2.csv 2017-10-20 05:47:01
## 1498                     KE_DL2/AKO_03KE_DL2.csv 2017-10-20 12:27:01
## 1499                     KE_DL2/AKO_03KE_DL2.csv 2017-10-21 16:27:01
## 1500                     KE_DL2/AKO_03KE_DL2.csv 2017-10-21 18:17:01
## 1501                     KE_DL2/AKO_03KE_DL2.csv 2017-10-22 10:07:01
## 1502                     KE_DL2/AKO_03KE_DL2.csv 2017-10-22 15:27:01
## 1503                     KE_DL2/AKO_03KE_DL2.csv 2017-10-22 17:47:01
## 1504                     KE_DL2/AKO_03KE_DL2.csv 2017-10-22 20:57:01
## 1505                     KE_DL2/AKO_03KE_DL2.csv 2017-10-23 05:27:01
## 1506                     KE_DL2/AKO_03KE_DL2.csv 2017-10-23 10:27:01
## 1507                     KE_DL2/AKO_03KE_DL2.csv 2017-10-23 15:47:01
## 1508                     KE_DL2/AKO_03KE_DL2.csv 2017-10-23 21:17:01
## 1509                     KE_DL2/AKO_03KE_DL2.csv 2017-10-24 17:47:01
## 1510                     KE_DL2/AKO_03KE_DL2.csv 2017-10-25 06:17:01
## 1511                     KE_DL2/AKO_03KE_DL2.csv 2017-10-25 11:17:01
## 1512                     KE_DL2/AKO_03KE_DL2.csv 2017-10-25 15:17:01
## 1513                     KE_DL2/AKO_03KE_DL2.csv 2017-10-25 19:27:01
## 1514                     KE_DL2/AKO_03KE_DL2.csv 2017-10-25 20:57:01
## 1515                     KE_DL2/AKO_03KE_DL2.csv 2017-10-26 18:47:01
## 1516                     CC_DL2/AKO_03CC_DL2.csv 2017-10-17 16:39:01
## 1517                     CC_DL2/AKO_03CC_DL2.csv 2017-10-17 17:19:01
## 1518                     CC_DL2/AKO_03CC_DL2.csv 2017-10-17 22:49:01
## 1519                     CC_DL2/AKO_03CC_DL2.csv 2017-10-18 05:49:01
## 1520                     CC_DL2/AKO_03CC_DL2.csv 2017-10-18 21:09:01
## 1521                     CC_DL2/AKO_03CC_DL2.csv 2017-10-19 17:49:01
## 1522                     CC_DL2/AKO_03CC_DL2.csv 2017-10-19 20:59:01
## 1523                     CC_DL2/AKO_03CC_DL2.csv 2017-10-20 20:49:01
## 1524                     CC_DL2/AKO_03CC_DL2.csv 2017-10-21 10:59:01
## 1525                     CC_DL2/AKO_03CC_DL2.csv 2017-10-21 13:19:01
## 1526                     CC_DL2/AKO_03CC_DL2.csv 2017-10-21 17:49:01
## 1527                     CC_DL2/AKO_03CC_DL2.csv 2017-10-21 19:49:01
## 1528                     CC_DL2/AKO_03CC_DL2.csv 2017-10-22 06:29:01
## 1529                     CC_DL2/AKO_03CC_DL2.csv 2017-10-22 09:59:01
## 1530                     CC_DL2/AKO_03CC_DL2.csv 2017-10-23 05:29:01
## 1531                     CC_DL2/AKO_03CC_DL2.csv 2017-10-24 05:59:01
## 1532                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-15 05:53:01
## 1533                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-15 07:53:01
## 1534                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-15 19:13:01
## 1535                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-15 20:53:01
## 1536                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-16 06:23:01
## 1537                   LPG_DL2/AKO_03LPG_DL2.csv 2017-10-16 09:23:01
## 1538                            AKO_03Ke_DL1.csv 2017-10-10 11:52:01
## 1539                            AKO_03Ke_DL1.csv 2017-10-10 20:52:01
## 1540                            AKO_03Ke_DL1.csv 2017-10-13 05:32:01
## 1541                            AKO_03Ke_DL1.csv 2017-10-13 08:22:01
## 1542                            AKO_03Ke_DL1.csv 2017-10-13 21:12:01
## 1543                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-10 12:34:01
## 1544                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-10 18:54:01
## 1545                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-10 21:04:01
## 1546                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-11 06:24:01
## 1547                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-11 08:44:01
## 1548                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-11 17:24:01
## 1549                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-11 21:14:01
## 1550                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-12 05:54:01
## 1551                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-12 13:54:01
## 1552                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-12 18:54:01
## 1553                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-13 07:04:01
## 1554                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-13 17:14:01
## 1555                   LPG_DL1/AKO_03LPG_DL1.csv 2017-10-13 19:54:01
## 1556                            AKO_03CC_DL1.csv 2017-10-09 08:37:01
## 1557                            AKO_03CC_DL1.csv 2017-10-10 11:47:01
## 1558                            AKO_03CC_DL1.csv 2017-10-10 18:37:01
## 1559                            AKO_03CC_DL1.csv 2017-10-11 05:47:01
## 1560                            AKO_03CC_DL1.csv 2017-10-11 06:27:01
## 1561                            AKO_03CC_DL1.csv 2017-10-11 10:57:01
## 1562                            AKO_03CC_DL1.csv 2017-10-11 20:37:01
## 1563                            AKO_03CC_DL1.csv 2017-10-11 22:07:01
## 1564                            AKO_03CC_DL1.csv 2017-10-12 06:17:01
## 1565                            AKO_03CC_DL1.csv 2017-10-12 08:57:01
## 1566                            AKO_03CC_DL1.csv 2017-10-12 17:17:01
## 1567                            AKO_03CC_DL1.csv 2017-10-12 18:57:01
## 1568                            AKO_03CC_DL1.csv 2017-10-13 08:27:01
## 1569  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-21 10:39:01
## 1570  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-21 17:49:01
## 1571  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-22 00:49:01
## 1572  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-22 06:49:01
## 1573  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-22 10:49:01
## 1574  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-22 17:39:01
## 1575  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-23 14:19:01
## 1576  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-23 16:19:01
## 1577  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-24 09:19:01
## 1578  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-24 17:19:01
## 1579  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-25 17:09:01
## 1580  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-26 10:49:01
## 1581  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-26 14:49:01
## 1582  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-27 16:49:01
## 1583  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-27 23:39:01
## 1584  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-28 08:09:01
## 1585  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-28 13:49:01
## 1586  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-29 17:09:01
## 1587  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-30 15:09:01
## 1588  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-30 17:49:01
## 1589  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-01-31 17:19:01
## 1590  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-02-01 10:19:01
## 1591  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-02-01 15:49:01
## 1592  TIMESTAMP CORRECTED KE/AKO_03(B)KE_DL8.csv 2018-02-02 17:09:01
## 1593  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-21 08:47:01
## 1594  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-21 11:47:01
## 1595  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-22 12:07:01
## 1596  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-22 15:57:01
## 1597  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-23 01:07:01
## 1598  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-23 06:47:01
## 1599  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-23 11:17:01
## 1600  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-23 14:57:01
## 1601  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-23 23:37:01
## 1602  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-24 07:07:01
## 1603  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-24 07:57:01
## 1604  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-24 12:17:01
## 1605  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-24 13:27:01
## 1606  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-25 08:27:01
## 1607  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-25 10:07:01
## 1608  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-25 16:47:01
## 1609  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-26 01:17:01
## 1610  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-26 06:57:01
## 1611  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-26 08:37:01
## 1612  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-26 13:37:01
## 1613  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-26 15:07:01
## 1614  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-27 08:47:01
## 1615  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-27 15:37:01
## 1616  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-28 07:37:01
## 1617  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-29 00:47:01
## 1618  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-29 07:57:01
## 1619  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-29 09:47:01
## 1620  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-30 00:47:01
## 1621  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-30 08:07:01
## 1622  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-30 10:07:01
## 1623  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-30 13:07:01
## 1624  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-31 06:47:01
## 1625  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-31 08:47:01
## 1626  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-31 11:27:01
## 1627  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-31 12:57:01
## 1628  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-01-31 18:27:01
## 1629  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-01 06:57:01
## 1630  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-01 07:47:01
## 1631  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-01 13:37:01
## 1632  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-01 17:17:01
## 1633  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-02 00:47:01
## 1634  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-02 06:37:01
## 1635  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-02 11:37:01
## 1636  TIMESTAMP CORRECTED CC/AKO_03(B)CC_DL8.csv 2018-02-02 16:47:01
## 1637           DL5_corrected_CC/AKO_04CC_DL5.csv 2017-12-08 08:12:01
## 1638           DL5_corrected_CC/AKO_04CC_DL5.csv 2017-12-08 09:32:01
## 1639          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 03:54:01
## 1640          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 06:24:01
## 1641          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 07:54:01
## 1642          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 09:14:01
## 1643          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 11:34:01
## 1644          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 16:34:01
## 1645          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 17:34:01
## 1646          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 19:24:01
## 1647          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 20:54:01
## 1648          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-02-12 22:54:01
## 1649          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 03:54:01
## 1650          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 05:54:01
## 1651          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 09:14:01
## 1652          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 10:04:01
## 1653          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 15:04:01
## 1654          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 16:44:01
## 1655          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 17:44:01
## 1656          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 18:34:01
## 1657          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 19:34:01
## 1658          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-03-12 20:24:01
## 1659          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 02:54:01
## 1660          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 06:14:01
## 1661          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 07:34:01
## 1662          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 10:04:01
## 1663          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 11:44:01
## 1664          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 16:44:01
## 1665          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 17:44:01
## 1666          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-04-12 20:24:01
## 1667          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 00:04:01
## 1668          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 03:24:01
## 1669          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 05:34:01
## 1670          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 08:14:01
## 1671          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 09:34:01
## 1672          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 13:04:01
## 1673          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 15:34:01
## 1674          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-05-12 21:24:01
## 1675          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 02:54:01
## 1676          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 05:44:01
## 1677          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 06:44:01
## 1678          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 07:34:01
## 1679          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 09:44:01
## 1680          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 11:44:01
## 1681          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 14:04:01
## 1682          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 17:24:01
## 1683          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-06-12 18:44:01
## 1684          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 01:24:01
## 1685          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 04:24:01
## 1686          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 06:54:01
## 1687          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 08:24:01
## 1688          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 09:34:01
## 1689          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 11:14:01
## 1690          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 12:24:01
## 1691          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 13:24:01
## 1692          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 14:34:01
## 1693          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 15:54:01
## 1694          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 17:44:01
## 1695          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 18:34:01
## 1696          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 20:14:01
## 1697          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-07-12 22:24:01
## 1698          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 00:04:01
## 1699          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 02:24:01
## 1700          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 03:54:01
## 1701          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 04:54:01
## 1702          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 06:24:01
## 1703          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 08:14:01
## 1704          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 09:14:01
## 1705          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 11:04:01
## 1706          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 13:24:01
## 1707          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 16:54:01
## 1708          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-08-12 17:44:01
## 1709          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-09-12 03:24:01
## 1710          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-09-12 04:24:01
## 1711          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-09-12 05:54:01
## 1712          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 09:44:01
## 1713          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 10:44:01
## 1714          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 12:14:01
## 1715          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 13:34:01
## 1716          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 14:34:01
## 1717          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 16:44:01
## 1718          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-25 19:34:01
## 1719          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 01:24:01
## 1720          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 04:24:01
## 1721          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 06:24:01
## 1722          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 09:14:01
## 1723          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 10:04:01
## 1724          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 11:44:01
## 1725          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 13:04:01
## 1726          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 20:34:01
## 1727          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 21:44:01
## 1728          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-26 22:54:01
## 1729          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 02:24:01
## 1730          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 03:54:01
## 1731          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 05:44:01
## 1732          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 08:54:01
## 1733          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 11:34:01
## 1734          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 13:24:01
## 1735          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 16:14:01
## 1736          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-27 18:44:01
## 1737          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 02:24:01
## 1738          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 04:24:01
## 1739          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 05:24:01
## 1740          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 08:24:01
## 1741          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 11:14:01
## 1742          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 14:24:01
## 1743          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 15:24:01
## 1744          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 17:44:01
## 1745          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 19:34:01
## 1746          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-28 21:54:01
## 1747          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 03:54:01
## 1748          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 05:04:01
## 1749          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 07:54:01
## 1750          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 10:24:01
## 1751          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 12:54:01
## 1752          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 14:04:01
## 1753          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 15:54:01
## 1754          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 18:14:01
## 1755          AKOKA DOWNLOAD 5_LPG/AKO_04LPG.csv 2017-11-29 22:54:01
## 1756            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 01:52:01
## 1757            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 03:12:01
## 1758            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 04:32:01
## 1759            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 07:12:01
## 1760            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 08:52:01
## 1761            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 12:12:01
## 1762            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 13:52:01
## 1763            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 17:12:01
## 1764            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 19:12:01
## 1765            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-02-12 23:12:01
## 1766            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 03:32:01
## 1767            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 06:22:01
## 1768            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 07:32:01
## 1769            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 08:22:01
## 1770            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 11:42:01
## 1771            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 15:42:01
## 1772            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 17:42:01
## 1773            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 18:22:01
## 1774            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 20:02:01
## 1775            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-03-12 21:02:01
## 1776            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 03:02:01
## 1777            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 06:32:01
## 1778            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 09:12:01
## 1779            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 14:52:01
## 1780            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 17:42:01
## 1781            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-04-12 20:42:01
## 1782            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-05-12 08:32:01
## 1783            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-05-12 09:52:01
## 1784            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-05-12 11:52:01
## 1785            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-05-12 17:22:01
## 1786            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-05-12 19:52:01
## 1787            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 06:22:01
## 1788            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 07:52:01
## 1789            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 11:12:01
## 1790            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 12:22:01
## 1791            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 14:22:01
## 1792            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 16:52:01
## 1793            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 18:52:01
## 1794            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-06-12 21:42:01
## 1795            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 00:02:01
## 1796            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 03:02:01
## 1797            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 07:02:01
## 1798            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 08:12:01
## 1799            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 13:42:01
## 1800            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 14:52:01
## 1801            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 16:12:01
## 1802            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 18:02:01
## 1803            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 20:02:01
## 1804            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 21:12:01
## 1805            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-07-12 23:42:01
## 1806            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 03:12:01
## 1807            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 04:52:01
## 1808            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 07:22:01
## 1809            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 08:12:01
## 1810            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 17:22:01
## 1811            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-08-12 21:12:01
## 1812            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-09-12 02:12:01
## 1813            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-09-12 07:02:01
## 1814            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 09:52:01
## 1815            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 12:22:01
## 1816            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 14:22:01
## 1817            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 15:52:01
## 1818            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 18:22:01
## 1819            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-25 19:52:01
## 1820            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 01:32:01
## 1821            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 04:42:01
## 1822            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 06:32:01
## 1823            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 12:22:01
## 1824            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 15:52:01
## 1825            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 19:32:01
## 1826            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 20:52:01
## 1827            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-26 23:32:01
## 1828            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 01:42:01
## 1829            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 03:52:01
## 1830            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 05:12:01
## 1831            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 07:32:01
## 1832            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 08:12:01
## 1833            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 10:42:01
## 1834            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 11:22:01
## 1835            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 14:52:01
## 1836            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 17:22:01
## 1837            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 18:32:01
## 1838            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 20:22:01
## 1839            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 21:12:01
## 1840            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-27 22:42:01
## 1841            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 04:32:01
## 1842            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 07:42:01
## 1843            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 09:52:01
## 1844            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 11:12:01
## 1845            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 20:02:01
## 1846            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-28 23:02:01
## 1847            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 00:32:01
## 1848            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 04:02:01
## 1849            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 05:32:01
## 1850            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 07:02:01
## 1851            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 08:12:01
## 1852            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 10:12:01
## 1853            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 14:22:01
## 1854            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 15:52:01
## 1855            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 20:42:01
## 1856            AKOKA DOWNLOAD 5_CC/AKO_04CC.csv 2017-11-29 22:02:01
## 1857            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 02:36:01
## 1858            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 04:06:01
## 1859            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 05:36:01
## 1860            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 06:16:01
## 1861            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 07:06:01
## 1862            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 09:46:01
## 1863            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 10:46:01
## 1864            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 14:16:01
## 1865            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 18:26:01
## 1866            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-02-12 20:16:01
## 1867            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 01:16:01
## 1868            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 05:06:01
## 1869            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 06:26:01
## 1870            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 07:06:01
## 1871            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 09:06:01
## 1872            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 10:26:01
## 1873            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 14:16:01
## 1874            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 17:46:01
## 1875            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-03-12 21:36:01
## 1876            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 01:46:01
## 1877            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 02:36:01
## 1878            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 05:16:01
## 1879            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 08:56:01
## 1880            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 15:16:01
## 1881            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 17:46:01
## 1882            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-04-12 20:26:01
## 1883            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 03:26:01
## 1884            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 05:26:01
## 1885            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 08:26:01
## 1886            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 09:46:01
## 1887            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 10:36:01
## 1888            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 13:46:01
## 1889            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 17:26:01
## 1890            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 21:06:01
## 1891            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 21:46:01
## 1892            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-05-12 22:36:01
## 1893            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 05:06:01
## 1894            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 06:26:01
## 1895            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 09:16:01
## 1896            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 10:16:01
## 1897            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 13:46:01
## 1898            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 15:46:01
## 1899            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 19:46:01
## 1900            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-06-12 23:26:01
## 1901            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 00:06:01
## 1902            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 04:36:01
## 1903            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 06:56:01
## 1904            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 08:16:01
## 1905            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 09:46:01
## 1906            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 13:56:01
## 1907            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 16:46:01
## 1908            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 22:36:01
## 1909            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-07-12 23:56:01
## 1910            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 02:36:01
## 1911            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 04:06:01
## 1912            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 05:56:01
## 1913            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 07:36:01
## 1914            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 08:16:01
## 1915            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 10:06:01
## 1916            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 11:06:01
## 1917            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 14:36:01
## 1918            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 16:46:01
## 1919            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 18:26:01
## 1920            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 19:56:01
## 1921            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 22:06:01
## 1922            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-08-12 22:56:01
## 1923            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-09-12 03:56:01
## 1924            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-09-12 05:06:01
## 1925            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-09-12 05:56:01
## 1926            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-09-12 08:46:01
## 1927            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 08:46:01
## 1928            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 12:16:01
## 1929            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 13:46:01
## 1930            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 15:46:01
## 1931            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 19:46:01
## 1932            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-25 21:06:01
## 1933            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 01:26:01
## 1934            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 07:36:01
## 1935            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 09:16:01
## 1936            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 10:16:01
## 1937            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 13:16:01
## 1938            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-26 18:16:01
## 1939            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-27 01:26:01
## 1940            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-27 05:36:01
## 1941            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-27 11:16:01
## 1942            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-27 16:46:01
## 1943            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-27 20:56:01
## 1944            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 02:06:01
## 1945            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 04:26:01
## 1946            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 05:16:01
## 1947            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 08:46:01
## 1948            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 11:36:01
## 1949            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 15:26:01
## 1950            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 17:16:01
## 1951            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 18:26:01
## 1952            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 19:06:01
## 1953            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-28 23:26:01
## 1954            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 04:56:01
## 1955            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 06:36:01
## 1956            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 07:26:01
## 1957            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 09:06:01
## 1958            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 10:06:01
## 1959            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 14:16:01
## 1960            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 15:26:01
## 1961            AKOKA DOWNLOAD 5_KE/AKO_04KE.csv 2017-11-29 17:36:01
## 1962      Akoka fouth download LPG/AKO_04LPG.csv 2017-02-11 04:07:01
## 1963      Akoka fouth download LPG/AKO_04LPG.csv 2017-02-11 07:07:01
## 1964      Akoka fouth download LPG/AKO_04LPG.csv 2017-02-11 07:57:01
## 1965      Akoka fouth download LPG/AKO_04LPG.csv 2017-02-11 09:07:01
## 1966      Akoka fouth download LPG/AKO_04LPG.csv 2017-02-11 20:27:01
## 1967      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 01:27:01
## 1968      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 05:17:01
## 1969      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 07:17:01
## 1970      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 12:07:01
## 1971      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 13:07:01
## 1972      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 18:17:01
## 1973      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 19:47:01
## 1974      Akoka fouth download LPG/AKO_04LPG.csv 2017-03-11 21:27:01
## 1975      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 00:17:01
## 1976      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 03:27:01
## 1977      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 04:47:01
## 1978      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 07:37:01
## 1979      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 12:37:01
## 1980      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 14:17:01
## 1981      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 15:47:01
## 1982      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 16:37:01
## 1983      Akoka fouth download LPG/AKO_04LPG.csv 2017-04-11 19:07:01
## 1984      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 01:17:01
## 1985      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 03:27:01
## 1986      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 05:47:01
## 1987      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 06:47:01
## 1988      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 15:07:01
## 1989      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 16:07:01
## 1990      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 18:27:01
## 1991      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 20:07:01
## 1992      Akoka fouth download LPG/AKO_04LPG.csv 2017-05-11 21:47:01
## 1993      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 01:57:01
## 1994      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 05:47:01
## 1995      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 07:27:01
## 1996      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 09:07:01
## 1997      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 12:37:01
## 1998      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 19:27:01
## 1999      Akoka fouth download LPG/AKO_04LPG.csv 2017-06-11 22:57:01
## 2000      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 08:17:01
## 2001      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 10:47:01
## 2002      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 14:37:01
## 2003      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 18:27:01
## 2004      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 20:07:01
## 2005      Akoka fouth download LPG/AKO_04LPG.csv 2017-07-11 21:57:01
## 2006      Akoka fouth download LPG/AKO_04LPG.csv 2017-08-11 07:37:01
## 2007      Akoka fouth download LPG/AKO_04LPG.csv 2017-08-11 08:27:01
## 2008      Akoka fouth download LPG/AKO_04LPG.csv 2017-08-11 13:07:01
## 2009      Akoka fouth download LPG/AKO_04LPG.csv 2017-08-11 15:07:01
## 2010      Akoka fouth download LPG/AKO_04LPG.csv 2017-08-11 22:17:01
## 2011      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 01:47:01
## 2012      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 08:07:01
## 2013      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 09:07:01
## 2014      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 10:27:01
## 2015      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 14:07:01
## 2016      Akoka fouth download LPG/AKO_04LPG.csv 2017-09-11 17:47:01
## 2017      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 02:27:01
## 2018      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 05:17:01
## 2019      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 07:57:01
## 2020      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 08:37:01
## 2021      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 10:27:01
## 2022      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 12:27:01
## 2023      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 14:07:01
## 2024      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 16:27:01
## 2025      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 17:27:01
## 2026      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 20:27:01
## 2027      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-11 23:57:01
## 2028      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-28 11:27:01
## 2029      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-28 15:07:01
## 2030      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-28 17:47:01
## 2031      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-28 20:47:01
## 2032      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-28 21:47:01
## 2033      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 03:57:01
## 2034      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 06:27:01
## 2035      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 08:57:01
## 2036      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 09:37:01
## 2037      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 12:07:01
## 2038      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 13:17:01
## 2039      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 14:27:01
## 2040      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 18:17:01
## 2041      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 19:57:01
## 2042      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-29 22:17:01
## 2043      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 00:57:01
## 2044      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 07:37:01
## 2045      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 08:27:01
## 2046      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 14:37:01
## 2047      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 18:07:01
## 2048      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-30 22:17:01
## 2049      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 04:17:01
## 2050      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 05:47:01
## 2051      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 07:07:01
## 2052      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 14:37:01
## 2053      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 16:47:01
## 2054      Akoka fouth download LPG/AKO_04LPG.csv 2017-10-31 21:47:01
## 2055      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 02:27:01
## 2056      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 09:37:01
## 2057      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 10:37:01
## 2058      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 12:17:01
## 2059      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 17:27:01
## 2060      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-11 21:47:01
## 2061      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-13 04:27:01
## 2062      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-13 13:37:01
## 2063      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-14 01:47:01
## 2064      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-14 06:17:01
## 2065      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-14 10:07:01
## 2066      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-14 11:47:01
## 2067      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-14 19:47:01
## 2068      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-15 02:17:01
## 2069      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-15 06:17:01
## 2070      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-15 09:07:01
## 2071      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-15 10:07:01
## 2072      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-15 15:07:01
## 2073      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 01:17:01
## 2074      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 09:37:01
## 2075      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 10:37:01
## 2076      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 14:37:01
## 2077      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 17:17:01
## 2078      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-16 23:07:01
## 2079      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-17 05:17:01
## 2080      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-17 13:07:01
## 2081      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-17 14:37:01
## 2082      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-17 18:17:01
## 2083      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-17 23:07:01
## 2084      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 03:57:01
## 2085      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 07:17:01
## 2086      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 12:37:01
## 2087      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 15:07:01
## 2088      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 17:27:01
## 2089      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-18 22:47:01
## 2090      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 00:07:01
## 2091      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 01:37:01
## 2092      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 06:47:01
## 2093      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 09:07:01
## 2094      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 11:07:01
## 2095      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-19 12:37:01
## 2096      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-20 09:37:01
## 2097      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-20 12:37:01
## 2098      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-20 19:57:01
## 2099      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-20 22:47:01
## 2100      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-21 01:47:01
## 2101      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-21 05:27:01
## 2102      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-21 10:07:01
## 2103      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-21 11:07:01
## 2104      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-21 19:17:01
## 2105      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-22 10:47:01
## 2106      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-22 20:57:01
## 2107      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-22 23:07:01
## 2108      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 01:27:01
## 2109      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 08:07:01
## 2110      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 10:07:01
## 2111      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 13:27:01
## 2112      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 17:57:01
## 2113      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-23 19:57:01
## 2114      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 04:57:01
## 2115      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 09:37:01
## 2116      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 10:37:01
## 2117      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 12:37:01
## 2118      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 15:17:01
## 2119      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-24 16:07:01
## 2120      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-25 00:37:01
## 2121      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-25 04:27:01
## 2122      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-25 05:27:01
## 2123      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-25 06:17:01
## 2124      Akoka fouth download LPG/AKO_04LPG.csv 2017-11-25 07:07:01
## 2125        Akoka fouth download CC/AKO_04CC.csv 2017-02-11 02:36:01
## 2126        Akoka fouth download CC/AKO_04CC.csv 2017-02-11 07:46:01
## 2127        Akoka fouth download CC/AKO_04CC.csv 2017-02-11 08:36:01
## 2128        Akoka fouth download CC/AKO_04CC.csv 2017-02-11 12:46:01
## 2129        Akoka fouth download CC/AKO_04CC.csv 2017-02-11 20:16:01
## 2130        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 01:26:01
## 2131        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 03:56:01
## 2132        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 07:16:01
## 2133        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 08:06:01
## 2134        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 12:16:01
## 2135        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 13:16:01
## 2136        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 15:16:01
## 2137        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 18:16:01
## 2138        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 20:06:01
## 2139        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 21:26:01
## 2140        Akoka fouth download CC/AKO_04CC.csv 2017-03-11 22:26:01
## 2141        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 04:06:01
## 2142        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 08:16:01
## 2143        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 08:56:01
## 2144        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 10:16:01
## 2145        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 10:56:01
## 2146        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 11:46:01
## 2147        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 13:46:01
## 2148        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 15:16:01
## 2149        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 15:56:01
## 2150        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 19:36:01
## 2151        Akoka fouth download CC/AKO_04CC.csv 2017-04-11 20:36:01
## 2152        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 03:06:01
## 2153        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 04:26:01
## 2154        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 07:36:01
## 2155        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 08:36:01
## 2156        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 09:16:01
## 2157        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 12:46:01
## 2158        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 13:26:01
## 2159        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 15:26:01
## 2160        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 20:16:01
## 2161        Akoka fouth download CC/AKO_04CC.csv 2017-05-11 21:06:01
## 2162        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 01:06:01
## 2163        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 05:26:01
## 2164        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 06:16:01
## 2165        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 06:56:01
## 2166        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 08:06:01
## 2167        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 12:16:01
## 2168        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 14:16:01
## 2169        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 17:16:01
## 2170        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 18:06:01
## 2171        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 20:36:01
## 2172        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 21:36:01
## 2173        Akoka fouth download CC/AKO_04CC.csv 2017-06-11 23:36:01
## 2174        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 02:26:01
## 2175        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 05:26:01
## 2176        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 07:16:01
## 2177        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 11:06:01
## 2178        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 11:46:01
## 2179        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 17:56:01
## 2180        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 19:46:01
## 2181        Akoka fouth download CC/AKO_04CC.csv 2017-07-11 22:56:01
## 2182        Akoka fouth download CC/AKO_04CC.csv 2017-08-11 07:16:01
## 2183        Akoka fouth download CC/AKO_04CC.csv 2017-08-11 09:56:01
## 2184        Akoka fouth download CC/AKO_04CC.csv 2017-08-11 12:16:01
## 2185        Akoka fouth download CC/AKO_04CC.csv 2017-08-11 20:06:01
## 2186        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 06:56:01
## 2187        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 08:46:01
## 2188        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 09:26:01
## 2189        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 10:26:01
## 2190        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 13:16:01
## 2191        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 14:46:01
## 2192        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 17:16:01
## 2193        Akoka fouth download CC/AKO_04CC.csv 2017-09-11 20:36:01
## 2194        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 01:56:01
## 2195        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 04:46:01
## 2196        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 06:06:01
## 2197        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 07:36:01
## 2198        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 08:16:01
## 2199        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 10:36:01
## 2200        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 12:46:01
## 2201        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 14:46:01
## 2202        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 16:36:01
## 2203        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 20:06:01
## 2204        Akoka fouth download CC/AKO_04CC.csv 2017-10-11 23:06:01
## 2205        Akoka fouth download CC/AKO_04CC.csv 2017-10-28 11:56:01
## 2206        Akoka fouth download CC/AKO_04CC.csv 2017-10-28 14:46:01
## 2207        Akoka fouth download CC/AKO_04CC.csv 2017-10-28 17:06:01
## 2208        Akoka fouth download CC/AKO_04CC.csv 2017-10-28 18:16:01
## 2209        Akoka fouth download CC/AKO_04CC.csv 2017-10-28 21:46:01
## 2210        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 02:56:01
## 2211        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 06:06:01
## 2212        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 08:06:01
## 2213        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 09:46:01
## 2214        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 10:26:01
## 2215        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 11:06:01
## 2216        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 11:46:01
## 2217        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 12:26:01
## 2218        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 13:26:01
## 2219        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 18:06:01
## 2220        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 19:26:01
## 2221        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 20:16:01
## 2222        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 22:06:01
## 2223        Akoka fouth download CC/AKO_04CC.csv 2017-10-29 23:26:01
## 2224        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 01:36:01
## 2225        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 06:46:01
## 2226        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 09:06:01
## 2227        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 13:46:01
## 2228        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 18:16:01
## 2229        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 18:56:01
## 2230        Akoka fouth download CC/AKO_04CC.csv 2017-10-30 22:36:01
## 2231        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 04:06:01
## 2232        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 06:26:01
## 2233        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 08:36:01
## 2234        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 10:06:01
## 2235        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 13:46:01
## 2236        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 17:46:01
## 2237        Akoka fouth download CC/AKO_04CC.csv 2017-10-31 19:36:01
## 2238        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 03:06:01
## 2239        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 06:36:01
## 2240        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 10:16:01
## 2241        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 11:46:01
## 2242        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 12:26:01
## 2243        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 20:26:01
## 2244        Akoka fouth download CC/AKO_04CC.csv 2017-11-11 21:56:01
## 2245        Akoka fouth download CC/AKO_04CC.csv 2017-11-13 12:16:01
## 2246        Akoka fouth download CC/AKO_04CC.csv 2017-11-13 14:46:01
## 2247        Akoka fouth download CC/AKO_04CC.csv 2017-11-13 17:46:01
## 2248        Akoka fouth download CC/AKO_04CC.csv 2017-11-14 00:06:01
## 2249        Akoka fouth download CC/AKO_04CC.csv 2017-11-14 08:16:01
## 2250        Akoka fouth download CC/AKO_04CC.csv 2017-11-14 15:46:01
## 2251        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 01:36:01
## 2252        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 04:26:01
## 2253        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 10:16:01
## 2254        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 12:46:01
## 2255        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 14:46:01
## 2256        Akoka fouth download CC/AKO_04CC.csv 2017-11-15 21:56:01
## 2257        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 01:36:01
## 2258        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 04:56:01
## 2259        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 08:06:01
## 2260        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 10:46:01
## 2261        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 12:46:01
## 2262        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 14:46:01
## 2263        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 22:16:01
## 2264        Akoka fouth download CC/AKO_04CC.csv 2017-11-16 23:06:01
## 2265        Akoka fouth download CC/AKO_04CC.csv 2017-11-17 07:56:01
## 2266        Akoka fouth download CC/AKO_04CC.csv 2017-11-17 09:46:01
## 2267        Akoka fouth download CC/AKO_04CC.csv 2017-11-18 14:16:01
## 2268        Akoka fouth download CC/AKO_04CC.csv 2017-11-19 00:56:01
## 2269        Akoka fouth download CC/AKO_04CC.csv 2017-11-19 07:36:01
## 2270        Akoka fouth download CC/AKO_04CC.csv 2017-11-19 10:46:01
## 2271        Akoka fouth download CC/AKO_04CC.csv 2017-11-19 14:46:01
## 2272        Akoka fouth download CC/AKO_04CC.csv 2017-11-20 08:06:01
## 2273        Akoka fouth download CC/AKO_04CC.csv 2017-11-20 12:16:01
## 2274        Akoka fouth download CC/AKO_04CC.csv 2017-11-20 15:46:01
## 2275        Akoka fouth download CC/AKO_04CC.csv 2017-11-20 20:56:01
## 2276        Akoka fouth download CC/AKO_04CC.csv 2017-11-20 23:06:01
## 2277        Akoka fouth download CC/AKO_04CC.csv 2017-11-21 02:06:01
## 2278        Akoka fouth download CC/AKO_04CC.csv 2017-11-21 05:36:01
## 2279        Akoka fouth download CC/AKO_04CC.csv 2017-11-21 06:26:01
## 2280        Akoka fouth download CC/AKO_04CC.csv 2017-11-21 11:16:01
## 2281        Akoka fouth download CC/AKO_04CC.csv 2017-11-21 14:16:01
## 2282        Akoka fouth download CC/AKO_04CC.csv 2017-11-22 10:36:01
## 2283        Akoka fouth download CC/AKO_04CC.csv 2017-11-22 11:56:01
## 2284        Akoka fouth download CC/AKO_04CC.csv 2017-11-22 16:16:01
## 2285        Akoka fouth download CC/AKO_04CC.csv 2017-11-22 20:06:01
## 2286        Akoka fouth download CC/AKO_04CC.csv 2017-11-22 22:16:01
## 2287        Akoka fouth download CC/AKO_04CC.csv 2017-11-23 01:56:01
## 2288        Akoka fouth download CC/AKO_04CC.csv 2017-11-23 06:06:01
## 2289        Akoka fouth download CC/AKO_04CC.csv 2017-11-23 13:46:01
## 2290        Akoka fouth download CC/AKO_04CC.csv 2017-11-23 16:36:01
## 2291        Akoka fouth download CC/AKO_04CC.csv 2017-11-24 06:06:01
## 2292        Akoka fouth download CC/AKO_04CC.csv 2017-11-24 10:16:01
## 2293        Akoka fouth download CC/AKO_04CC.csv 2017-11-24 12:46:01
## 2294        Akoka fouth download CC/AKO_04CC.csv 2017-11-24 15:26:01
## 2295        Akoka fouth download CC/AKO_04CC.csv 2017-11-24 20:36:01
## 2296        Akoka fouth download CC/AKO_04CC.csv 2017-11-25 02:36:01
## 2297        Akoka fouth download CC/AKO_04CC.csv 2017-11-25 06:26:01
## 2298       Akoka fourth download KE/AKO_04KE.csv 2017-02-11 00:40:01
## 2299       Akoka fourth download KE/AKO_04KE.csv 2017-02-11 06:50:01
## 2300       Akoka fourth download KE/AKO_04KE.csv 2017-02-11 10:00:01
## 2301       Akoka fourth download KE/AKO_04KE.csv 2017-02-11 11:20:01
## 2302       Akoka fourth download KE/AKO_04KE.csv 2017-02-11 20:20:01
## 2303       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 06:50:01
## 2304       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 08:10:01
## 2305       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 10:10:01
## 2306       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 13:20:01
## 2307       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 15:20:01
## 2308       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 17:10:01
## 2309       Akoka fourth download KE/AKO_04KE.csv 2017-03-11 19:10:01
## 2310       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 02:00:01
## 2311       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 07:50:01
## 2312       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 09:20:01
## 2313       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 10:00:01
## 2314       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 13:50:01
## 2315       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 16:50:01
## 2316       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 18:40:01
## 2317       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 21:20:01
## 2318       Akoka fourth download KE/AKO_04KE.csv 2017-04-11 23:50:01
## 2319       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 07:20:01
## 2320       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 08:40:01
## 2321       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 11:40:01
## 2322       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 14:40:01
## 2323       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 16:20:01
## 2324       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 17:20:01
## 2325       Akoka fourth download KE/AKO_04KE.csv 2017-05-11 18:20:01
## 2326       Akoka fourth download KE/AKO_04KE.csv 2017-06-11 01:30:01
## 2327       Akoka fourth download KE/AKO_04KE.csv 2017-06-11 07:30:01
## 2328       Akoka fourth download KE/AKO_04KE.csv 2017-06-11 19:10:01
## 2329       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 02:00:01
## 2330       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 04:40:01
## 2331       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 07:20:01
## 2332       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 08:50:01
## 2333       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 11:50:01
## 2334       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 15:20:01
## 2335       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 19:50:01
## 2336       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 22:10:01
## 2337       Akoka fourth download KE/AKO_04KE.csv 2017-07-11 23:50:01
## 2338       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 02:00:01
## 2339       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 03:00:01
## 2340       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 07:10:01
## 2341       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 08:20:01
## 2342       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 09:50:01
## 2343       Akoka fourth download KE/AKO_04KE.csv 2017-08-11 23:50:01
## 2344       Akoka fourth download KE/AKO_04KE.csv 2017-09-11 07:00:01
## 2345       Akoka fourth download KE/AKO_04KE.csv 2017-09-11 09:20:01
## 2346       Akoka fourth download KE/AKO_04KE.csv 2017-09-11 14:20:01
## 2347       Akoka fourth download KE/AKO_04KE.csv 2017-09-11 18:20:01
## 2348       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 01:40:01
## 2349       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 02:30:01
## 2350       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 03:10:01
## 2351       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 07:20:01
## 2352       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 08:50:01
## 2353       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 14:50:01
## 2354       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 16:10:01
## 2355       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 16:50:01
## 2356       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 21:40:01
## 2357       Akoka fourth download KE/AKO_04KE.csv 2017-10-11 23:10:01
## 2358       Akoka fourth download KE/AKO_04KE.csv 2017-10-28 11:30:01
## 2359       Akoka fourth download KE/AKO_04KE.csv 2017-10-28 12:10:01
## 2360       Akoka fourth download KE/AKO_04KE.csv 2017-10-28 14:50:01
## 2361       Akoka fourth download KE/AKO_04KE.csv 2017-10-29 02:40:01
## 2362       Akoka fourth download KE/AKO_04KE.csv 2017-10-29 11:20:01
## 2363       Akoka fourth download KE/AKO_04KE.csv 2017-10-29 13:50:01
## 2364       Akoka fourth download KE/AKO_04KE.csv 2017-10-29 18:40:01
## 2365       Akoka fourth download KE/AKO_04KE.csv 2017-10-30 05:00:01
## 2366       Akoka fourth download KE/AKO_04KE.csv 2017-10-30 07:00:01
## 2367       Akoka fourth download KE/AKO_04KE.csv 2017-10-30 09:50:01
## 2368       Akoka fourth download KE/AKO_04KE.csv 2017-10-30 13:50:01
## 2369       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 08:30:01
## 2370       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 10:00:01
## 2371       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 15:50:01
## 2372       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 19:20:01
## 2373       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 22:00:01
## 2374       Akoka fourth download KE/AKO_04KE.csv 2017-10-31 23:10:01
## 2375       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 04:10:01
## 2376       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 08:20:01
## 2377       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 09:20:01
## 2378       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 10:20:01
## 2379       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 12:00:01
## 2380       Akoka fourth download KE/AKO_04KE.csv 2017-11-11 13:00:01
## 2381       Akoka fourth download KE/AKO_04KE.csv 2017-11-13 11:50:01
## 2382       Akoka fourth download KE/AKO_04KE.csv 2017-11-13 13:20:01
## 2383       Akoka fourth download KE/AKO_04KE.csv 2017-11-13 14:50:01
## 2384       Akoka fourth download KE/AKO_04KE.csv 2017-11-14 00:40:01
## 2385       Akoka fourth download KE/AKO_04KE.csv 2017-11-14 15:50:01
## 2386       Akoka fourth download KE/AKO_04KE.csv 2017-11-14 18:30:01
## 2387       Akoka fourth download KE/AKO_04KE.csv 2017-11-15 01:10:01
## 2388       Akoka fourth download KE/AKO_04KE.csv 2017-11-15 04:10:01
## 2389       Akoka fourth download KE/AKO_04KE.csv 2017-11-15 09:50:01
## 2390       Akoka fourth download KE/AKO_04KE.csv 2017-11-15 12:20:01
## 2391       Akoka fourth download KE/AKO_04KE.csv 2017-11-15 17:40:01
## 2392       Akoka fourth download KE/AKO_04KE.csv 2017-11-16 01:00:01
## 2393       Akoka fourth download KE/AKO_04KE.csv 2017-11-16 04:40:01
## 2394       Akoka fourth download KE/AKO_04KE.csv 2017-11-16 08:50:01
## 2395       Akoka fourth download KE/AKO_04KE.csv 2017-11-16 12:20:01
## 2396       Akoka fourth download KE/AKO_04KE.csv 2017-11-16 21:10:01
## 2397       Akoka fourth download KE/AKO_04KE.csv 2017-11-17 05:00:01
## 2398       Akoka fourth download KE/AKO_04KE.csv 2017-11-17 12:20:01
## 2399       Akoka fourth download KE/AKO_04KE.csv 2017-11-17 22:30:01
## 2400       Akoka fourth download KE/AKO_04KE.csv 2017-11-17 23:20:01
## 2401       Akoka fourth download KE/AKO_04KE.csv 2017-11-18 03:40:01
## 2402       Akoka fourth download KE/AKO_04KE.csv 2017-11-18 07:30:01
## 2403       Akoka fourth download KE/AKO_04KE.csv 2017-11-18 14:20:01
## 2404       Akoka fourth download KE/AKO_04KE.csv 2017-11-18 20:40:01
## 2405       Akoka fourth download KE/AKO_04KE.csv 2017-11-19 02:00:01
## 2406       Akoka fourth download KE/AKO_04KE.csv 2017-11-19 06:40:01
## 2407       Akoka fourth download KE/AKO_04KE.csv 2017-11-19 07:50:01
## 2408       Akoka fourth download KE/AKO_04KE.csv 2017-11-19 10:50:01
## 2409       Akoka fourth download KE/AKO_04KE.csv 2017-11-19 14:50:01
## 2410       Akoka fourth download KE/AKO_04KE.csv 2017-11-20 03:40:01
## 2411       Akoka fourth download KE/AKO_04KE.csv 2017-11-20 12:20:01
## 2412       Akoka fourth download KE/AKO_04KE.csv 2017-11-20 15:50:01
## 2413       Akoka fourth download KE/AKO_04KE.csv 2017-11-20 19:10:01
## 2414       Akoka fourth download KE/AKO_04KE.csv 2017-11-20 23:00:01
## 2415       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 02:40:01
## 2416       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 06:30:01
## 2417       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 08:00:01
## 2418       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 10:50:01
## 2419       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 12:20:01
## 2420       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 15:50:01
## 2421       Akoka fourth download KE/AKO_04KE.csv 2017-11-21 18:10:01
## 2422       Akoka fourth download KE/AKO_04KE.csv 2017-11-22 03:10:01
## 2423       Akoka fourth download KE/AKO_04KE.csv 2017-11-22 10:30:01
## 2424       Akoka fourth download KE/AKO_04KE.csv 2017-11-22 16:20:01
## 2425       Akoka fourth download KE/AKO_04KE.csv 2017-11-22 18:10:01
## 2426       Akoka fourth download KE/AKO_04KE.csv 2017-11-22 22:20:01
## 2427       Akoka fourth download KE/AKO_04KE.csv 2017-11-23 09:50:01
## 2428       Akoka fourth download KE/AKO_04KE.csv 2017-11-23 15:20:01
## 2429       Akoka fourth download KE/AKO_04KE.csv 2017-11-23 16:30:01
## 2430       Akoka fourth download KE/AKO_04KE.csv 2017-11-23 19:00:01
## 2431       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 03:30:01
## 2432       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 05:30:01
## 2433       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 10:50:01
## 2434       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 12:20:01
## 2435       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 14:30:01
## 2436       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 20:00:01
## 2437       Akoka fourth download KE/AKO_04KE.csv 2017-11-24 23:40:01
## 2438       Akoka fourth download KE/AKO_04KE.csv 2017-11-25 04:30:01
## 2439         DL4_corrected_LPG/AKO_04LPG_DL4.csv 2017-11-05 07:17:01
## 2440         DL4_corrected_LPG/AKO_04LPG_DL4.csv 2017-11-05 10:57:01
## 2441           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-09 14:50:01
## 2442           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-11 08:50:01
## 2443           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-11 20:50:01
## 2444           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-12 09:20:01
## 2445           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-12 16:20:01
## 2446           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-16 20:50:01
## 2447           DL9_corrected_KE/AKO_05KE (B).csv 2018-02-17 15:40:01
## 2448           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-04 17:26:01
## 2449           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-04 18:36:01
## 2450           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-04 19:36:01
## 2451           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-09 13:46:01
## 2452           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-09 14:56:01
## 2453           DL9_corrected_CC/AKO_05CC (B).csv 2018-02-17 14:16:01
## 2454  TIMESTAMP CORRECTED KE/AKO_05KE(B)_DL7.csv 2018-01-10 10:21:01
## 2455  TIMESTAMP CORRECTED KE/AKO_05KE(B)_DL7.csv 2018-01-11 22:11:01
## 2456  TIMESTAMP CORRECTED KE/AKO_05KE(B)_DL7.csv 2018-01-17 14:51:01
## 2457  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-07 09:19:01
## 2458  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-07 16:49:01
## 2459  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-07 19:59:01
## 2460  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-08 09:39:01
## 2461  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-12 15:49:01
## 2462  TIMESTAMP CORRECTED CC/AKO_05CC(B)_DL7.csv 2018-01-17 13:19:01
## 2463           DL6_corrected_KE/AKO_05KE_DL6.csv 2018-01-03 10:35:01
## 2464           DL6_corrected_KE/AKO_05KE_DL6.csv 2018-01-04 09:05:01
## 2465           DL6_corrected_KE/AKO_05KE_DL6.csv 2018-01-05 09:15:01
## 2466           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-17 16:10:01
## 2467           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-18 10:40:01
## 2468           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-18 12:00:01
## 2469           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-18 22:10:01
## 2470           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-19 09:30:01
## 2471           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-20 23:30:01
## 2472           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-21 22:40:01
## 2473           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-22 09:40:01
## 2474           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-26 13:50:01
## 2475           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-27 08:50:01
## 2476           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-27 15:20:01
## 2477           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-28 10:40:01
## 2478           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-29 20:40:01
## 2479           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-30 12:00:01
## 2480           DL6_corrected_CC/AKO_05CC_DL6.csv 2017-12-30 19:10:01
## 2481    Akoka fourth download KE/AKO_05KE(B).csv 2017-11-15 00:04:01
## 2482     Akoka fouth download CC/AKO_05CC(B).csv 2017-11-15 00:01:01
## 2483                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-07 12:57:01
## 2484                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-12 08:57:01
## 2485                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-16 19:07:01
## 2486                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-20 08:07:01
## 2487                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-21 07:17:01
## 2488                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-21 18:27:01
## 2489                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-21 21:17:01
## 2490                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-22 07:27:01
## 2491                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-22 13:17:01
## 2492                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-22 19:47:01
## 2493                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-23 19:47:01
## 2494                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-24 08:17:01
## 2495                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-24 19:57:01
## 2496                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-25 16:17:01
## 2497                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-26 15:27:01
## 2498                   LPG_DL2/AKO_05LPG_DL2.csv 2017-10-27 21:47:01
## 2499                     CC_DL2/AKO_05CC_DL2.csv 2017-10-16 18:45:01
## 2500                     CC_DL2/AKO_05CC_DL2.csv 2017-10-16 20:15:01
## 2501                     CC_DL2/AKO_05CC_DL2.csv 2017-10-17 07:15:01
## 2502                     CC_DL2/AKO_05CC_DL2.csv 2017-10-17 10:05:01
## 2503                     CC_DL2/AKO_05CC_DL2.csv 2017-10-17 13:55:01
## 2504                     CC_DL2/AKO_05CC_DL2.csv 2017-10-17 19:15:01
## 2505                     CC_DL2/AKO_05CC_DL2.csv 2017-10-21 18:35:01
## 2506                     KE_DL2/AKO_05KE_DL2.csv 2017-10-15 13:21:01
## 2507                     KE_DL2/AKO_05KE_DL2.csv 2017-10-15 16:01:01
## 2508                     KE_DL2/AKO_05KE_DL2.csv 2017-10-15 20:01:01
## 2509                     KE_DL2/AKO_05KE_DL2.csv 2017-10-16 07:11:01
## 2510                     KE_DL2/AKO_05KE_DL2.csv 2017-10-16 11:41:01
## 2511                     KE_DL2/AKO_05KE_DL2.csv 2017-10-17 19:01:01
## 2512                     KE_DL2/AKO_05KE_DL2.csv 2017-10-17 20:31:01
## 2513                     KE_DL2/AKO_05KE_DL2.csv 2017-10-17 22:01:01
## 2514                     KE_DL2/AKO_05KE_DL2.csv 2017-10-18 08:11:01
## 2515                     KE_DL2/AKO_05KE_DL2.csv 2017-10-18 10:11:01
## 2516                     KE_DL2/AKO_05KE_DL2.csv 2017-10-18 19:21:01
## 2517                     KE_DL2/AKO_05KE_DL2.csv 2017-10-19 07:21:01
## 2518                     KE_DL2/AKO_05KE_DL2.csv 2017-10-19 20:21:01
## 2519                     KE_DL2/AKO_05KE_DL2.csv 2017-10-20 20:01:01
## 2520                            AKO_05Ke_DL1.csv 2017-10-12 07:18:01
## 2521                            AKO_05CC_DL1.csv 2017-10-07 14:10:01
## 2522                            AKO_05CC_DL1.csv 2017-10-07 16:00:01
## 2523                            AKO_05CC_DL1.csv 2017-10-08 12:50:01
## 2524                            AKO_05CC_DL1.csv 2017-10-09 06:50:01
## 2525                            AKO_05CC_DL1.csv 2017-10-10 06:50:01
## 2526                            AKO_05CC_DL1.csv 2017-10-10 17:40:01
## 2527                            AKO_05CC_DL1.csv 2017-10-10 19:30:01
## 2528  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-01-26 16:54:01
## 2529  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-01-27 09:34:01
## 2530  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-01-27 15:24:01
## 2531  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-01-27 20:44:01
## 2532  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-02-01 18:54:01
## 2533  TIMESTAMP CORRECTED CC/AKO_05(B)CC_DL8.csv 2018-02-02 10:34:01
## 2534  TIMESTAMP CORRECTED KE/AKO_05(B)KE_DL8.csv 2018-01-21 20:47:01
## 2535  TIMESTAMP CORRECTED KE/AKO_05(B)KE_DL8.csv 2018-01-23 18:47:01
## 2536  TIMESTAMP CORRECTED KE/AKO_05(B)KE_DL8.csv 2018-01-27 15:27:01
## 2537  TIMESTAMP CORRECTED KE/AKO_05(B)KE_DL8.csv 2018-01-31 14:47:01
## 2538  TIMESTAMP CORRECTED KE/AKO_05(B)KE_DL8.csv 2018-02-01 09:47:01
## 2539            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-05 18:56:01
## 2540            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-06 14:16:01
## 2541            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-07 19:36:01
## 2542            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-08 13:56:01
## 2543            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-10 18:16:01
## 2544            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-11 08:56:01
## 2545            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-11 19:46:01
## 2546            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-16 18:16:01
## 2547            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-17 07:16:01
## 2548            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-17 14:26:01
## 2549            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-17 19:06:01
## 2550            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-18 10:46:01
## 2551            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-18 19:36:01
## 2552            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-25 12:26:01
## 2553            DL9_corrected_KE/AKO_06KE(B).csv 2018-02-25 15:16:01
## 2554           DL9_corrected_CC/AKO_06CC (B).csv 2018-02-17 09:13:01
## 2555           DL9_corrected_CC/AKO_06CC (B).csv 2018-02-17 15:43:01
## 2556  TIMESTAMP CORRECTED CC/AKO_06CC(B)_DL7.csv 2018-01-07 00:02:01
## 2557  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-07 11:44:01
## 2558  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-08 10:24:01
## 2559  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-10 16:54:01
## 2560  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-11 06:14:01
## 2561  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-12 09:54:01
## 2562  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-12 16:24:01
## 2563  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-12 19:24:01
## 2564  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-13 08:34:01
## 2565  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-14 08:14:01
## 2566  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-15 06:14:01
## 2567  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-15 22:04:01
## 2568  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-16 06:14:01
## 2569  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-16 17:24:01
## 2570  TIMESTAMP CORRECTED KE/AKO_06KE(B)_DL7.csv 2018-01-17 06:24:01
## 2571        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-18 07:42:01
## 2572        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-19 09:42:01
## 2573        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-20 18:52:01
## 2574        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-21 07:02:01
## 2575        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-21 20:32:01
## 2576        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-22 10:12:01
## 2577        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-24 10:22:01
## 2578        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-24 13:22:01
## 2579        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-24 16:52:01
## 2580        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-25 08:52:01
## 2581        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-25 11:42:01
## 2582        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-26 08:22:01
## 2583        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-26 19:12:01
## 2584        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-27 10:22:01
## 2585        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-27 13:22:01
## 2586        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-28 07:02:01
## 2587        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-30 10:22:01
## 2588        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-30 11:12:01
## 2589        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-30 18:52:01
## 2590        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2017-12-31 07:52:01
## 2591        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-01 09:42:01
## 2592        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-02 10:42:01
## 2593        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-02 15:42:01
## 2594        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-03 09:02:01
## 2595        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-03 14:12:01
## 2596        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-04 07:22:01
## 2597        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-04 09:52:01
## 2598        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-05 09:52:01
## 2599        DL6_corrected_KE/AKO_06KE(B)_DL6.csv 2018-01-05 14:52:01
## 2600        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-17 07:49:01
## 2601        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-17 15:39:01
## 2602        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-17 19:49:01
## 2603        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-17 21:09:01
## 2604        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-17 22:39:01
## 2605        DL6_corrected_CC/AKO_06CC(B)_DL6.csv 2017-12-18 05:19:01
## 2606     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-15 08:36:01
## 2607     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-17 13:36:01
## 2608     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-18 20:16:01
## 2609     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-19 08:16:01
## 2610     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-20 05:46:01
## 2611     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-20 06:26:01
## 2612     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-21 07:46:01
## 2613     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-22 06:06:01
## 2614     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-23 19:56:01
## 2615     Akoka fouth download CC/AKO_06CC(B).csv 2017-11-24 19:36:01
## 2616    Akoka fourth download KE/AKO_06KE(B).csv 2017-11-19 08:29:01
## 2617    Akoka fourth download KE/AKO_06KE(B).csv 2017-11-23 20:09:01
## 2618    Akoka fourth download KE/AKO_06KE(B).csv 2017-11-24 19:39:01
## 2619                     KE_DL2/AKO_06KE_DL2.csv 2017-10-07 00:05:01
## 2620                   LPG_DL2/AKO_06LPG_DL2.csv 2017-10-19 00:05:01
## 2621                     CC_DL2/AKO_06CC_DL2.csv 2017-10-21 16:03:01
## 2622                     CC_DL2/AKO_06CC_DL2.csv 2017-10-21 21:13:01
## 2623                     CC_DL2/AKO_06CC_DL2.csv 2017-10-22 13:33:01
## 2624                     CC_DL2/AKO_06CC_DL2.csv 2017-10-22 14:23:01
## 2625                     CC_DL2/AKO_06CC_DL2.csv 2017-10-22 20:13:01
## 2626                     CC_DL2/AKO_06CC_DL2.csv 2017-10-23 07:13:01
## 2627                     CC_DL2/AKO_06CC_DL2.csv 2017-10-23 08:03:01
## 2628                     CC_DL2/AKO_06CC_DL2.csv 2017-10-23 16:53:01
## 2629                     CC_DL2/AKO_06CC_DL2.csv 2017-10-23 18:43:01
## 2630                     CC_DL2/AKO_06CC_DL2.csv 2017-10-23 20:33:01
## 2631                     CC_DL2/AKO_06CC_DL2.csv 2017-10-24 07:13:01
## 2632                     CC_DL2/AKO_06CC_DL2.csv 2017-10-24 17:53:01
## 2633                     CC_DL2/AKO_06CC_DL2.csv 2017-10-24 19:53:01
## 2634                     CC_DL2/AKO_06CC_DL2.csv 2017-10-24 21:43:01
## 2635                     CC_DL2/AKO_06CC_DL2.csv 2017-10-24 22:43:01
## 2636                     CC_DL2/AKO_06CC_DL2.csv 2017-10-25 06:53:01
## 2637                     CC_DL2/AKO_06CC_DL2.csv 2017-10-25 08:13:01
## 2638                     CC_DL2/AKO_06CC_DL2.csv 2017-10-25 09:33:01
## 2639                     CC_DL2/AKO_06CC_DL2.csv 2017-10-25 18:53:01
## 2640                     CC_DL2/AKO_06CC_DL2.csv 2017-10-26 09:53:01
## 2641                     CC_DL2/AKO_06CC_DL2.csv 2017-10-26 11:03:01
## 2642                     CC_DL2/AKO_06CC_DL2.csv 2017-10-26 17:43:01
## 2643                     CC_DL2/AKO_06CC_DL2.csv 2017-10-26 20:03:01
## 2644                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-07 10:08:01
## 2645                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-07 12:08:01
## 2646                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-08 10:58:01
## 2647                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-08 12:48:01
## 2648                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-08 14:48:01
## 2649                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-08 19:48:01
## 2650                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-08 21:38:01
## 2651                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-09 07:18:01
## 2652                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-09 16:28:01
## 2653                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-09 18:48:01
## 2654                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-09 21:38:01
## 2655                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-10 06:28:01
## 2656                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-10 17:48:01
## 2657                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-11 06:48:01
## 2658                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-11 09:48:01
## 2659                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-11 14:58:01
## 2660                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-11 16:48:01
## 2661                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-11 21:48:01
## 2662                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-12 05:58:01
## 2663                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-12 12:08:01
## 2664                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-16 17:08:01
## 2665                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-16 18:18:01
## 2666                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-16 20:58:01
## 2667                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-17 05:58:01
## 2668                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-17 07:48:01
## 2669                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-17 17:58:01
## 2670                   LPG_DL1/AKO_06LPG_DL1.csv 2017-10-17 21:08:01
## 2671                            AKO_06CC_DL1.csv 2017-10-07 12:23:01
## 2672                            AKO_06CC_DL1.csv 2017-10-07 19:23:01
## 2673                            AKO_06CC_DL1.csv 2017-10-08 09:23:01
## 2674                            AKO_06CC_DL1.csv 2017-10-08 11:13:01
## 2675                            AKO_06CC_DL1.csv 2017-10-08 15:03:01
## 2676                            AKO_06CC_DL1.csv 2017-10-08 20:43:01
## 2677                            AKO_06CC_DL1.csv 2017-10-09 07:13:01
## 2678                            AKO_06CC_DL1.csv 2017-10-09 08:03:01
## 2679                            AKO_06CC_DL1.csv 2017-10-10 06:53:01
## 2680                            AKO_06CC_DL1.csv 2017-10-11 23:03:01
## 2681                            AKO_06CC_DL1.csv 2017-10-16 06:23:01
## 2682  TIMESTAMP CORRECTED CC/AKO_06(B)CC_DL8.csv 2018-01-21 00:02:01
## 2683  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-21 17:46:01
## 2684  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-22 06:06:01
## 2685  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-22 18:46:01
## 2686  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-23 05:26:01
## 2687  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-26 06:16:01
## 2688  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-26 19:16:01
## 2689  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-27 08:36:01
## 2690  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-27 17:46:01
## 2691  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-28 08:16:01
## 2692  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-28 19:16:01
## 2693  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-29 19:16:01
## 2694  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-01-31 15:46:01
## 2695  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-02-01 18:16:01
## 2696  TIMESTAMP CORRECTED KE/AKO_06(B)KE_DL8.csv 2018-02-02 06:56:01
## 2697  TIMESTAMP CORRECTED KE/AKO_07KE(B)_DL8.csv 2017-12-10 00:00:01
## 2698  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-09 10:47:01
## 2699  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-09 11:27:01
## 2700  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-09 22:47:01
## 2701  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-10 08:47:01
## 2702  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-11 10:17:01
## 2703  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-12 12:17:01
## 2704  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-13 22:07:01
## 2705  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-14 08:17:01
## 2706  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-18 09:17:01
## 2707  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-18 14:57:01
## 2708  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-19 16:07:01
## 2709  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-19 17:27:01
## 2710  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-20 10:27:01
## 2711  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-21 07:47:01
## 2712  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-22 10:17:01
## 2713  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-23 09:07:01
## 2714  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-24 18:57:01
## 2715  TIMESTAMP CORRECTED CC/AKO_07CC(B)_DL8.csv 2018-01-25 10:17:01
## 2716            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-26 06:51:01
## 2717            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-27 08:41:01
## 2718            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-27 09:31:01
## 2719            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-27 18:41:01
## 2720            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-27 22:41:01
## 2721            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-28 07:51:01
## 2722            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-28 22:31:01
## 2723            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-29 08:11:01
## 2724            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-29 10:21:01
## 2725            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-29 11:31:01
## 2726            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-29 23:31:01
## 2727            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-11-30 19:41:01
## 2728            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-12-01 09:21:01
## 2729            AKOKA DOWNLOAD 5_CC/AKO_07CC.csv 2017-12-01 13:11:01
## 2730    Akoka fourth download KE/AKO_07KE(B).csv 2017-11-15 00:01:01
## 2731     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-15 07:49:01
## 2732     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-16 17:39:01
## 2733     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-17 08:49:01
## 2734     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-17 11:29:01
## 2735     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-17 19:29:01
## 2736     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-17 23:29:01
## 2737     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-18 07:39:01
## 2738     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-20 07:39:01
## 2739     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-20 21:29:01
## 2740     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-21 08:39:01
## 2741     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-21 15:09:01
## 2742     Akoka fouth download CC/AKO_07CC(B).csv 2017-11-21 16:29:01
## 2743                     CC_DL2/AKO_07CC_DL2.csv 2017-10-22 10:31:01
## 2744                     CC_DL2/AKO_07CC_DL2.csv 2017-10-22 11:51:01
## 2745                     CC_DL2/AKO_07CC_DL2.csv 2017-10-22 19:41:01
## 2746                     CC_DL2/AKO_07CC_DL2.csv 2017-10-23 19:41:01
## 2747                     CC_DL2/AKO_07CC_DL2.csv 2017-10-24 05:41:01
## 2748                     CC_DL2/AKO_07CC_DL2.csv 2017-10-24 17:11:01
## 2749                     CC_DL2/AKO_07CC_DL2.csv 2017-10-25 06:41:01
## 2750                     CC_DL2/AKO_07CC_DL2.csv 2017-10-25 18:41:01
## 2751                     CC_DL2/AKO_07CC_DL2.csv 2017-10-26 11:51:01
## 2752                     KE_DL2/AKO_07KE_DL2.csv 2017-10-17 06:35:01
## 2753                     KE_DL2/AKO_07KE_DL2.csv 2017-10-18 06:45:01
## 2754                     KE_DL2/AKO_07KE_DL2.csv 2017-10-21 09:15:01
## 2755                   LPG_DL2/AKO_07LPG_DL2.csv 2017-10-07 11:00:01
## 2756                   LPG_DL2/AKO_07LPG_DL2.csv 2017-10-13 20:20:01
## 2757                   LPG_DL2/AKO_07LPG_DL2.csv 2017-10-14 08:50:01
## 2758                            AKO_07KE_DL1.csv 2017-10-07 18:16:01
## 2759                            AKO_07KE_DL1.csv 2017-10-10 07:46:01
## 2760                            AKO_07KE_DL1.csv 2017-10-12 21:06:01
## 2761                            AKO_07KE_DL1.csv 2017-10-13 05:46:01
## 2762                            AKO_07KE_DL1.csv 2017-10-13 18:16:01
## 2763                            AKO_07CC_DL1.csv 2017-10-07 21:16:01
## 2764                            AKO_07CC_DL1.csv 2017-10-08 08:16:01
## 2765                            AKO_07CC_DL1.csv 2017-10-08 09:26:01
## 2766                            AKO_07CC_DL1.csv 2017-10-08 18:46:01
## 2767                            AKO_07CC_DL1.csv 2017-10-09 05:16:01
## 2768                            AKO_07CC_DL1.csv 2017-10-09 06:56:01
## 2769                            AKO_07CC_DL1.csv 2017-10-09 07:46:01
## 2770                            AKO_07CC_DL1.csv 2017-10-09 08:36:01
## 2771                            AKO_07CC_DL1.csv 2017-10-09 19:26:01
## 2772                            AKO_07CC_DL1.csv 2017-10-10 05:26:01
## 2773                            AKO_07CC_DL1.csv 2017-10-10 07:06:01
## 2774                            AKO_07CC_DL1.csv 2017-10-10 19:16:01
## 2775                            AKO_07CC_DL1.csv 2017-10-11 06:16:01
## 2776                            AKO_07CC_DL1.csv 2017-10-11 15:46:01
## 2777                            AKO_07CC_DL1.csv 2017-10-11 18:26:01
## 2778                            AKO_07CC_DL1.csv 2017-10-12 05:16:01
## 2779                            AKO_07CC_DL1.csv 2017-10-12 13:56:01
## 2780                            AKO_07CC_DL1.csv 2017-10-12 18:46:01
## 2781                            AKO_07CC_DL1.csv 2017-10-12 19:56:01
## 2782                            AKO_07CC_DL1.csv 2017-10-13 06:16:01
## 2783           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-11-30 05:44:01
## 2784           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-11-30 09:04:01
## 2785           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-11-30 16:14:01
## 2786           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-11-30 18:04:01
## 2787           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-01 08:14:01
## 2788           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-01 18:44:01
## 2789           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-02 08:54:01
## 2790           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-02 10:14:01
## 2791           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-02 18:54:01
## 2792           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-03 07:54:01
## 2793           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-03 17:54:01
## 2794           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-04 05:24:01
## 2795           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-04 07:44:01
## 2796           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-04 17:24:01
## 2797           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-05 05:44:01
## 2798           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-05 17:54:01
## 2799           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-05 19:44:01
## 2800           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-06 05:24:01
## 2801           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-06 18:34:01
## 2802           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-07 05:24:01
## 2803           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-07 18:44:01
## 2804           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-08 08:24:01
## 2805           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-08 15:54:01
## 2806           DL5_corrected_KE/AKO_08KE_DL5.csv 2017-12-08 18:04:01
## 2807           DL5_corrected_CC/AKO_08CC_DL5.csv 2017-12-08 08:49:01
## 2808           DL5_corrected_CC/AKO_08CC_DL5.csv 2017-12-08 16:19:01
## 2809            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 02:49:01
## 2810            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 05:19:01
## 2811            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 09:49:01
## 2812            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 11:09:01
## 2813            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 12:19:01
## 2814            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 13:39:01
## 2815            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 15:49:01
## 2816            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 17:19:01
## 2817            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-02-12 21:19:01
## 2818            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 00:49:01
## 2819            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 07:49:01
## 2820            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 10:49:01
## 2821            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 12:09:01
## 2822            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 14:19:01
## 2823            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 15:49:01
## 2824            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 17:19:01
## 2825            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 18:59:01
## 2826            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 20:19:01
## 2827            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-03-12 22:49:01
## 2828            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 01:49:01
## 2829            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 03:49:01
## 2830            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 05:19:01
## 2831            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 07:39:01
## 2832            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 09:49:01
## 2833            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 11:19:01
## 2834            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 13:19:01
## 2835            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 16:49:01
## 2836            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 17:39:01
## 2837            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-04-12 23:19:01
## 2838            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 01:49:01
## 2839            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 05:49:01
## 2840            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 09:09:01
## 2841            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 10:39:01
## 2842            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 12:19:01
## 2843            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 15:49:01
## 2844            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 19:19:01
## 2845            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-05-12 22:49:01
## 2846            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 01:49:01
## 2847            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 05:19:01
## 2848            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 07:49:01
## 2849            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 09:49:01
## 2850            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 11:39:01
## 2851            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 15:49:01
## 2852            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 17:49:01
## 2853            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 18:59:01
## 2854            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 19:49:01
## 2855            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-06-12 21:49:01
## 2856            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 04:19:01
## 2857            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 05:19:01
## 2858            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 07:49:01
## 2859            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 10:19:01
## 2860            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 13:39:01
## 2861            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 14:49:01
## 2862            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 16:39:01
## 2863            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 18:19:01
## 2864            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-07-12 21:09:01
## 2865            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 08:19:01
## 2866            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 11:39:01
## 2867            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 12:49:01
## 2868            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 15:49:01
## 2869            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 18:19:01
## 2870            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-08-12 20:49:01
## 2871            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 00:49:01
## 2872            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 03:19:01
## 2873            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 04:49:01
## 2874            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 05:49:01
## 2875            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 08:09:01
## 2876            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-09-12 09:19:01
## 2877            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-25 09:59:01
## 2878            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-25 13:19:01
## 2879            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-25 14:39:01
## 2880            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-25 19:49:01
## 2881            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 00:19:01
## 2882            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 02:49:01
## 2883            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 05:19:01
## 2884            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 06:59:01
## 2885            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 10:09:01
## 2886            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 11:49:01
## 2887            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 13:39:01
## 2888            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 14:39:01
## 2889            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 16:19:01
## 2890            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 17:49:01
## 2891            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-26 21:49:01
## 2892            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 01:19:01
## 2893            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 02:19:01
## 2894            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 04:19:01
## 2895            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 09:39:01
## 2896            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 10:49:01
## 2897            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 13:09:01
## 2898            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 14:39:01
## 2899            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 17:09:01
## 2900            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 18:19:01
## 2901            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 20:19:01
## 2902            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-27 23:19:01
## 2903            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 00:49:01
## 2904            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 05:29:01
## 2905            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 08:39:01
## 2906            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 10:49:01
## 2907            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 13:39:01
## 2908            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 17:59:01
## 2909            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-28 19:49:01
## 2910            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 01:49:01
## 2911            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 05:49:01
## 2912            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 08:19:01
## 2913            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 10:19:01
## 2914            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 13:39:01
## 2915            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 15:49:01
## 2916            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 16:49:01
## 2917            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 20:19:01
## 2918            AKOKA DOWNLOAD 5_CC/AKO_08CC.csv 2017-11-29 22:49:01
## 2919            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 05:24:01
## 2920            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 07:24:01
## 2921            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 08:44:01
## 2922            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 13:44:01
## 2923            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 15:14:01
## 2924            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 18:04:01
## 2925            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-02-12 23:34:01
## 2926            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 00:54:01
## 2927            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 03:04:01
## 2928            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 04:54:01
## 2929            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 07:24:01
## 2930            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 14:54:01
## 2931            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 15:54:01
## 2932            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 16:44:01
## 2933            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-03-12 21:14:01
## 2934            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 04:34:01
## 2935            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 09:44:01
## 2936            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 15:54:01
## 2937            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 16:44:01
## 2938            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 22:04:01
## 2939            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-04-12 23:54:01
## 2940            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 00:04:01
## 2941            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 04:54:01
## 2942            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 13:54:01
## 2943            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 14:44:01
## 2944            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 17:24:01
## 2945            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 22:14:01
## 2946            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-05-12 23:14:01
## 2947            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 01:14:01
## 2948            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 02:34:01
## 2949            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 04:44:01
## 2950            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 08:24:01
## 2951            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 13:14:01
## 2952            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 14:44:01
## 2953            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 17:34:01
## 2954            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-06-12 22:54:01
## 2955            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 04:14:01
## 2956            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 09:44:01
## 2957            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 10:24:01
## 2958            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 13:44:01
## 2959            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 14:54:01
## 2960            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 17:44:01
## 2961            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 21:34:01
## 2962            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-07-12 23:14:01
## 2963            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 02:14:01
## 2964            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 03:14:01
## 2965            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 04:24:01
## 2966            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 06:54:01
## 2967            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 11:24:01
## 2968            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 15:24:01
## 2969            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 18:54:01
## 2970            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-08-12 23:34:01
## 2971            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-09-12 01:24:01
## 2972            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-09-12 02:14:01
## 2973            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-09-12 05:24:01
## 2974            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-09-12 06:54:01
## 2975            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-25 10:04:01
## 2976            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-25 13:14:01
## 2977            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-25 15:44:01
## 2978            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-25 18:14:01
## 2979            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-25 22:54:01
## 2980            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 00:24:01
## 2981            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 05:24:01
## 2982            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 09:04:01
## 2983            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 10:44:01
## 2984            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 12:44:01
## 2985            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 14:44:01
## 2986            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 16:24:01
## 2987            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 19:54:01
## 2988            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-26 21:14:01
## 2989            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 04:14:01
## 2990            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 04:54:01
## 2991            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 08:04:01
## 2992            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 15:14:01
## 2993            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 21:24:01
## 2994            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-27 22:44:01
## 2995            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 00:54:01
## 2996            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 01:54:01
## 2997            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 03:14:01
## 2998            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 04:44:01
## 2999            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 12:14:01
## 3000            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 14:14:01
## 3001            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-28 22:24:01
## 3002            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 00:14:01
## 3003            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 01:14:01
## 3004            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 03:04:01
## 3005            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 04:44:01
## 3006            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 07:54:01
## 3007            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 12:44:01
## 3008            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 15:24:01
## 3009            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 17:54:01
## 3010            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 18:44:01
## 3011            AKOKA DOWNLOAD 5_KE/AKO_08KE.csv 2017-11-29 21:44:01
## 3012    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-16 17:47:01
## 3013    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-16 20:07:01
## 3014    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-17 06:07:01
## 3015    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-17 08:27:01
## 3016    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-17 18:17:01
## 3017    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-17 20:57:01
## 3018    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-18 15:57:01
## 3019    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-18 17:47:01
## 3020    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-18 19:57:01
## 3021    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-19 07:47:01
## 3022    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-19 09:37:01
## 3023    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-19 14:17:01
## 3024    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-20 05:27:01
## 3025    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-20 07:57:01
## 3026    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-20 15:47:01
## 3027    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-20 18:17:01
## 3028    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-21 05:37:01
## 3029    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-21 08:47:01
## 3030    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-21 17:47:01
## 3031    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-21 19:07:01
## 3032    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-21 20:57:01
## 3033    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 05:37:01
## 3034    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 07:27:01
## 3035    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 08:57:01
## 3036    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 15:17:01
## 3037    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 17:27:01
## 3038    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-22 20:27:01
## 3039    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-23 05:47:01
## 3040    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-23 08:47:01
## 3041    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-23 16:47:01
## 3042    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-24 05:27:01
## 3043    Akoka fourth download KE/AKO_08KE(B).csv 2017-11-24 19:47:01
## 3044     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-15 06:15:01
## 3045     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-15 18:15:01
## 3046     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-16 05:55:01
## 3047     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-16 08:25:01
## 3048     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-17 05:15:01
## 3049     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-17 18:05:01
## 3050     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-18 15:15:01
## 3051     Akoka fouth download CC/AKO_08CC(B).csv 2017-11-19 07:45:01
## 3052                     CC_DL2/AKO_08CC_DL2.csv 2017-10-15 08:20:01
## 3053                     CC_DL2/AKO_08CC_DL2.csv 2017-10-17 07:20:01
## 3054                     CC_DL2/AKO_08CC_DL2.csv 2017-10-18 06:40:01
## 3055                     CC_DL2/AKO_08CC_DL2.csv 2017-10-19 06:20:01
## 3056                            AKO_08Ke_DL1.csv 2017-10-07 11:53:01
## 3057                            AKO_08Ke_DL1.csv 2017-10-07 14:23:01
## 3058                            AKO_08Ke_DL1.csv 2017-10-07 18:53:01
## 3059                            AKO_08Ke_DL1.csv 2017-10-08 07:53:01
## 3060                            AKO_08Ke_DL1.csv 2017-10-08 10:03:01
## 3061                            AKO_08Ke_DL1.csv 2017-10-09 05:53:01
## 3062                            AKO_08Ke_DL1.csv 2017-10-10 06:23:01
## 3063                            AKO_08Ke_DL1.csv 2017-10-10 13:23:01
## 3064                            AKO_08Ke_DL1.csv 2017-10-10 20:53:01
## 3065                            AKO_08Ke_DL1.csv 2017-10-11 06:43:01
## 3066                            AKO_08Ke_DL1.csv 2017-10-12 05:53:01
## 3067                            AKO_08Ke_DL1.csv 2017-10-12 13:33:01
## 3068                            AKO_08Ke_DL1.csv 2017-10-12 21:13:01
## 3069                            AKO_08Ke_DL1.csv 2017-10-13 05:53:01
## 3070                            AKO_08Ke_DL1.csv 2017-10-13 21:13:01
## 3071                            AKO_08CC_DL1.csv 2017-10-07 19:24:01
## 3072                            AKO_08CC_DL1.csv 2017-10-08 09:24:01
## 3073                            AKO_08CC_DL1.csv 2017-10-08 19:44:01
## 3074                            AKO_08CC_DL1.csv 2017-10-09 06:14:01
## 3075                            AKO_08CC_DL1.csv 2017-10-09 21:14:01
## 3076                            AKO_08CC_DL1.csv 2017-10-10 06:24:01
## 3077                            AKO_08CC_DL1.csv 2017-10-10 21:04:01
## 3078                            AKO_08CC_DL1.csv 2017-10-11 06:14:01
## 3079                            AKO_08CC_DL1.csv 2017-10-11 07:04:01
## 3080                            AKO_08CC_DL1.csv 2017-10-11 21:14:01
## 3081                            AKO_08CC_DL1.csv 2017-10-12 05:54:01
## 3082                            AKO_08CC_DL1.csv 2017-10-12 15:14:01
## 3083                            AKO_08CC_DL1.csv 2017-10-12 21:14:01
## 3084                            AKO_08CC_DL1.csv 2017-10-13 06:44:01
## 3085                            AKO_08CC_DL1.csv 2017-10-13 21:34:01
## 3086              DL9_corrected_CC/AKO_09AMB.csv 2018-02-04 00:00:01
## 3087               DL9_corrected_KE/AKO_09KE.csv 2018-02-17 11:45:01
## 3088               DL9_corrected_KE/AKO_09KE.csv 2018-02-17 14:15:01
## 3089    TIMESTAMP CORRECTED CC/AKO_09AMB_DL8.csv 2018-01-21 00:09:01
## 3090     TIMESTAMP CORRECTED CC/AKO_09CC_DL8.csv 2018-01-21 08:44:01
## 3091    TIMESTAMP CORRECTED CC/AKO_09AMB_DL7.csv 2018-01-07 00:00:01
## 3092     TIMESTAMP CORRECTED CC/AKO_09CC_DL7.csv 2018-01-19 18:54:01
## 3093     TIMESTAMP CORRECTED KE/AKO_09KE_DL7.csv 2018-01-08 06:47:01
## 3094     TIMESTAMP CORRECTED KE/AKO_09KE_DL7.csv 2018-01-09 05:47:01
## 3095          DL6_corrected_CC/AKO_09AMB_DL6.csv 2017-12-10 00:08:01
## 3096          DL5_corrected_CC/AKO_09AMB_DL5.csv 2017-11-30 00:08:01
## 3097           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-02-12 02:28:01
## 3098           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-02-12 06:38:01
## 3099           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-02-12 12:48:01
## 3100           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-02-12 14:48:01
## 3101           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-02-12 20:08:01
## 3102           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-03-12 03:08:01
## 3103           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-03-12 08:08:01
## 3104           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-03-12 18:38:01
## 3105           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-04-12 03:38:01
## 3106           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-04-12 15:18:01
## 3107           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-04-12 18:28:01
## 3108           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-04-12 19:18:01
## 3109           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-05-12 03:38:01
## 3110           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-05-12 08:08:01
## 3111           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-05-12 09:48:01
## 3112           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-05-12 12:48:01
## 3113           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-05-12 18:58:01
## 3114           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-06-12 04:38:01
## 3115           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-06-12 13:48:01
## 3116           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-06-12 23:28:01
## 3117           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-07-12 11:18:01
## 3118           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-07-12 14:08:01
## 3119           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-07-12 17:08:01
## 3120           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-07-12 20:58:01
## 3121           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-08-12 06:58:01
## 3122           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-08-12 12:48:01
## 3123           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-09-12 05:58:01
## 3124           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-25 09:18:01
## 3125           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-25 13:18:01
## 3126           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-25 15:48:01
## 3127           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-26 02:28:01
## 3128           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-26 08:08:01
## 3129           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-26 09:08:01
## 3130           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-26 11:18:01
## 3131           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-27 10:18:01
## 3132           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-27 12:48:01
## 3133           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-27 14:18:01
## 3134           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 01:38:01
## 3135           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 06:08:01
## 3136           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 11:18:01
## 3137           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 12:48:01
## 3138           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 15:18:01
## 3139           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-28 18:38:01
## 3140           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-29 07:08:01
## 3141           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-29 11:18:01
## 3142           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-29 15:18:01
## 3143           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-29 18:28:01
## 3144           AKOKA DOWNLOAD 5_CC/AKO_09AMB.csv 2017-11-29 20:38:01
## 3145            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-02-12 07:11:01
## 3146            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-02-12 09:21:01
## 3147            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-02-12 10:51:01
## 3148            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-02-12 15:21:01
## 3149            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-02-12 19:11:01
## 3150            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 07:11:01
## 3151            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 08:31:01
## 3152            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 09:51:01
## 3153            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 11:51:01
## 3154            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 12:41:01
## 3155            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-03-12 15:51:01
## 3156            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-04-12 00:11:01
## 3157            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-04-12 08:51:01
## 3158            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-04-12 15:21:01
## 3159            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-05-12 07:11:01
## 3160            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-05-12 08:31:01
## 3161            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-05-12 13:21:01
## 3162            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-05-12 19:01:01
## 3163            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-06-12 05:51:01
## 3164            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-06-12 18:41:01
## 3165            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-06-12 19:21:01
## 3166            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-07-12 10:21:01
## 3167            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-07-12 15:11:01
## 3168            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-07-12 15:51:01
## 3169            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-08-12 07:31:01
## 3170            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-08-12 13:51:01
## 3171            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-08-12 19:11:01
## 3172            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 09:21:01
## 3173            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 10:41:01
## 3174            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 11:21:01
## 3175            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 14:41:01
## 3176            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 16:21:01
## 3177            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-25 19:21:01
## 3178            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-26 07:11:01
## 3179            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-26 08:31:01
## 3180            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-26 09:51:01
## 3181            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-27 06:11:01
## 3182            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-27 08:01:01
## 3183            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-27 13:21:01
## 3184            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-28 07:41:01
## 3185            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-28 08:51:01
## 3186            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-28 11:21:01
## 3187            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-28 15:51:01
## 3188            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-29 00:11:01
## 3189            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-29 08:51:01
## 3190            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-29 11:51:01
## 3191            AKOKA DOWNLOAD 5_KE/AKO_09KE.csv 2017-11-29 17:01:01
## 3192            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 05:26:01
## 3193            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 08:46:01
## 3194            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 12:46:01
## 3195            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 14:46:01
## 3196            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 16:36:01
## 3197            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-02-12 18:26:01
## 3198            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 08:56:01
## 3199            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 12:16:01
## 3200            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 14:16:01
## 3201            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 17:06:01
## 3202            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 19:56:01
## 3203            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-03-12 20:36:01
## 3204            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 03:26:01
## 3205            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 09:16:01
## 3206            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 11:16:01
## 3207            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 13:16:01
## 3208            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 17:26:01
## 3209            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 18:56:01
## 3210            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-04-12 20:26:01
## 3211            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 07:36:01
## 3212            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 11:16:01
## 3213            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 13:16:01
## 3214            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 14:46:01
## 3215            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 15:36:01
## 3216            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-05-12 21:56:01
## 3217            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 03:36:01
## 3218            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 07:56:01
## 3219            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 10:46:01
## 3220            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 12:16:01
## 3221            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 14:16:01
## 3222            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 15:06:01
## 3223            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 17:26:01
## 3224            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 19:16:01
## 3225            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-06-12 21:06:01
## 3226            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 03:46:01
## 3227            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 07:46:01
## 3228            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 09:06:01
## 3229            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 11:46:01
## 3230            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 13:56:01
## 3231            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 14:56:01
## 3232            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 16:06:01
## 3233            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 18:06:01
## 3234            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-07-12 18:46:01
## 3235            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-08-12 04:06:01
## 3236            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-08-12 06:56:01
## 3237            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-08-12 10:16:01
## 3238            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-08-12 13:16:01
## 3239            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-09-12 03:06:01
## 3240            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-09-12 07:06:01
## 3241            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-09-12 08:26:01
## 3242            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-25 09:16:01
## 3243            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-25 13:16:01
## 3244            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-25 14:56:01
## 3245            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-25 15:46:01
## 3246            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-25 16:56:01
## 3247            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 04:36:01
## 3248            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 05:46:01
## 3249            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 07:36:01
## 3250            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 09:16:01
## 3251            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 10:26:01
## 3252            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 12:46:01
## 3253            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-26 19:36:01
## 3254            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 02:06:01
## 3255            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 06:56:01
## 3256            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 07:36:01
## 3257            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 08:16:01
## 3258            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 11:46:01
## 3259            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 13:46:01
## 3260            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 14:26:01
## 3261            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 15:16:01
## 3262            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-27 18:06:01
## 3263            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 00:36:01
## 3264            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 05:06:01
## 3265            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 08:26:01
## 3266            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 10:46:01
## 3267            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 13:16:01
## 3268            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 14:16:01
## 3269            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 16:16:01
## 3270            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 16:56:01
## 3271            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-28 23:06:01
## 3272            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-29 07:46:01
## 3273            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-29 09:46:01
## 3274            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-29 11:16:01
## 3275            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-29 13:46:01
## 3276            AKOKA DOWNLOAD 5_CC/AKO_09CC.csv 2017-11-29 16:56:01
## 3277       Akoka fourth download KE/AKO_09KE.csv 2017-11-13 00:06:01
## 3278      Akoka fourth download KE/AKO_09AMB.csv 2017-11-13 00:04:01
## 3279        Akoka fouth download CC/AKO_09CC.csv 2017-11-15 05:13:01
## 3280        Akoka fouth download CC/AKO_09CC.csv 2017-11-15 15:53:01
## 3281        Akoka fouth download CC/AKO_09CC.csv 2017-11-15 18:33:01
## 3282        Akoka fouth download CC/AKO_09CC.csv 2017-11-16 05:53:01
## 3283        Akoka fouth download CC/AKO_09CC.csv 2017-11-17 18:13:01
## 3284        Akoka fouth download CC/AKO_09CC.csv 2017-11-18 09:03:01
## 3285        Akoka fouth download CC/AKO_09CC.csv 2017-11-18 17:33:01
## 3286        Akoka fouth download CC/AKO_09CC.csv 2017-11-19 08:23:01
## 3287        Akoka fouth download CC/AKO_09CC.csv 2017-11-19 18:53:01
## 3288        Akoka fouth download CC/AKO_09CC.csv 2017-11-20 05:33:01
## 3289           DL4_corrected_KE/AKO_09KE_DL4.csv 2017-11-12 00:06:01
## 3290          DL4_corrected_CC/AKO_09AMB_DL4.csv 2017-11-12 00:04:01
## 3291           DL4_corrected_CC/AKO_09CC_DL4.csv 2017-11-12 00:03:01
## 3292                    CC_DL3/AKO_09AMB_DL3.csv 2017-10-29 00:06:01
## 3293                    CC_DL2/AKO_09AMB_DL2.csv 2017-10-15 00:08:01
## 3294            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 00:38:01
## 3295            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 02:48:01
## 3296            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 05:58:01
## 3297            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 06:58:01
## 3298            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 14:58:01
## 3299            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-02-12 20:18:01
## 3300            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 01:18:01
## 3301            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 05:48:01
## 3302            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 09:18:01
## 3303            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 15:18:01
## 3304            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 17:18:01
## 3305            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 19:28:01
## 3306            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-03-12 20:08:01
## 3307            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 00:18:01
## 3308            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 01:48:01
## 3309            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 04:48:01
## 3310            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 09:08:01
## 3311            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 11:58:01
## 3312            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 15:08:01
## 3313            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 18:18:01
## 3314            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-04-12 22:38:01
## 3315            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 00:08:01
## 3316            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 02:48:01
## 3317            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 05:18:01
## 3318            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 07:48:01
## 3319            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 09:48:01
## 3320            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 13:18:01
## 3321            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 15:38:01
## 3322            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-05-12 20:18:01
## 3323            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 05:18:01
## 3324            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 07:38:01
## 3325            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 10:48:01
## 3326            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 11:58:01
## 3327            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 13:38:01
## 3328            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 19:48:01
## 3329            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-06-12 21:18:01
## 3330            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 01:18:01
## 3331            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 03:18:01
## 3332            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 09:38:01
## 3333            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 11:38:01
## 3334            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 15:48:01
## 3335            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 16:48:01
## 3336            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 18:48:01
## 3337            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 20:18:01
## 3338            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-07-12 22:08:01
## 3339            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 00:18:01
## 3340            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 01:18:01
## 3341            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 03:18:01
## 3342            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 06:48:01
## 3343            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 09:38:01
## 3344            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 15:28:01
## 3345            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 19:48:01
## 3346            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-08-12 21:48:01
## 3347            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-09-12 01:18:01
## 3348            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-09-12 05:48:01
## 3349            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-09-12 08:18:01
## 3350            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-09-12 08:58:01
## 3351            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-25 09:38:01
## 3352            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-25 10:38:01
## 3353            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-25 15:18:01
## 3354            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-25 20:38:01
## 3355            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 01:48:01
## 3356            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 03:48:01
## 3357            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 05:18:01
## 3358            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 09:38:01
## 3359            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 12:48:01
## 3360            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-26 18:48:01
## 3361            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 02:18:01
## 3362            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 05:48:01
## 3363            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 08:08:01
## 3364            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 12:18:01
## 3365            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 13:28:01
## 3366            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-27 21:48:01
## 3367            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-28 06:18:01
## 3368            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-28 07:18:01
## 3369            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-28 15:58:01
## 3370            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-28 17:18:01
## 3371            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-28 21:48:01
## 3372            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 02:18:01
## 3373            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 04:18:01
## 3374            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 08:08:01
## 3375            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 15:28:01
## 3376            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 16:08:01
## 3377            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 19:28:01
## 3378            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 22:48:01
## 3379            AKOKA DOWNLOAD 5_KE/AKO_10KE.csv 2017-11-29 23:48:01
## 3380            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 03:56:01
## 3381            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 04:56:01
## 3382            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 08:16:01
## 3383            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 09:46:01
## 3384            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 13:16:01
## 3385            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 15:36:01
## 3386            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 18:26:01
## 3387            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-02-12 22:06:01
## 3388            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 00:26:01
## 3389            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 03:06:01
## 3390            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 06:46:01
## 3391            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 07:56:01
## 3392            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 12:36:01
## 3393            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 15:56:01
## 3394            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 16:36:01
## 3395            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 17:16:01
## 3396            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 20:16:01
## 3397            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 21:26:01
## 3398            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-03-12 23:36:01
## 3399            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 00:56:01
## 3400            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 06:36:01
## 3401            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 09:46:01
## 3402            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 11:06:01
## 3403            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 11:46:01
## 3404            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 12:26:01
## 3405            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 14:46:01
## 3406            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 15:36:01
## 3407            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 17:56:01
## 3408            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-04-12 22:46:01
## 3409            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 03:36:01
## 3410            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 07:56:01
## 3411            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 09:06:01
## 3412            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 09:46:01
## 3413            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 17:06:01
## 3414            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 20:26:01
## 3415            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-05-12 22:36:01
## 3416            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 00:36:01
## 3417            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 05:36:01
## 3418            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 08:36:01
## 3419            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 14:16:01
## 3420            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 19:06:01
## 3421            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 19:46:01
## 3422            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-06-12 21:16:01
## 3423            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 03:06:01
## 3424            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 10:06:01
## 3425            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 13:06:01
## 3426            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 13:56:01
## 3427            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 21:56:01
## 3428            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-07-12 23:16:01
## 3429            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 05:36:01
## 3430            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 07:46:01
## 3431            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 10:26:01
## 3432            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 15:46:01
## 3433            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 17:16:01
## 3434            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 21:26:01
## 3435            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-08-12 22:26:01
## 3436            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-09-12 06:06:01
## 3437            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-09-12 08:26:01
## 3438            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-09-12 09:06:01
## 3439            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-25 11:46:01
## 3440            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-25 18:06:01
## 3441            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-25 21:06:01
## 3442            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-25 21:46:01
## 3443            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-25 23:16:01
## 3444            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 00:56:01
## 3445            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 02:06:01
## 3446            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 05:06:01
## 3447            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 06:56:01
## 3448            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 07:46:01
## 3449            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 09:46:01
## 3450            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 12:16:01
## 3451            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 14:26:01
## 3452            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-26 16:36:01
## 3453            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 03:06:01
## 3454            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 06:06:01
## 3455            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 10:16:01
## 3456            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 13:16:01
## 3457            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 22:46:01
## 3458            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-27 23:26:01
## 3459            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 04:36:01
## 3460            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 07:36:01
## 3461            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 08:46:01
## 3462            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 10:46:01
## 3463            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 12:16:01
## 3464            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 16:36:01
## 3465            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 17:16:01
## 3466            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 22:16:01
## 3467            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-28 23:46:01
## 3468            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 00:26:01
## 3469            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 02:56:01
## 3470            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 08:46:01
## 3471            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 15:46:01
## 3472            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 16:26:01
## 3473            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 18:36:01
## 3474            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 20:16:01
## 3475            AKOKA DOWNLOAD 5_CC/AKO_10CC.csv 2017-11-29 22:46:01
## 3476       Akoka fourth download KE/AKO_10KE.csv 2017-11-13 10:15:01
## 3477       Akoka fourth download KE/AKO_10KE.csv 2017-11-13 11:55:01
## 3478       Akoka fourth download KE/AKO_10KE.csv 2017-11-13 15:45:01
## 3479       Akoka fourth download KE/AKO_10KE.csv 2017-11-14 10:05:01
## 3480       Akoka fourth download KE/AKO_10KE.csv 2017-11-14 15:35:01
## 3481       Akoka fourth download KE/AKO_10KE.csv 2017-11-15 19:15:01
## 3482       Akoka fourth download KE/AKO_10KE.csv 2017-11-15 23:05:01
## 3483       Akoka fourth download KE/AKO_10KE.csv 2017-11-16 07:45:01
## 3484       Akoka fourth download KE/AKO_10KE.csv 2017-11-16 10:15:01
## 3485       Akoka fourth download KE/AKO_10KE.csv 2017-11-17 10:35:01
## 3486       Akoka fourth download KE/AKO_10KE.csv 2017-11-18 10:35:01
## 3487       Akoka fourth download KE/AKO_10KE.csv 2017-11-20 10:05:01
## 3488       Akoka fourth download KE/AKO_10KE.csv 2017-11-20 17:05:01
## 3489       Akoka fourth download KE/AKO_10KE.csv 2017-11-21 08:45:01
## 3490       Akoka fourth download KE/AKO_10KE.csv 2017-11-21 22:15:01
## 3491       Akoka fourth download KE/AKO_10KE.csv 2017-11-22 01:15:01
## 3492       Akoka fourth download KE/AKO_10KE.csv 2017-11-22 10:45:01
## 3493       Akoka fourth download KE/AKO_10KE.csv 2017-11-22 17:45:01
## 3494       Akoka fourth download KE/AKO_10KE.csv 2017-11-23 08:15:01
## 3495       Akoka fourth download KE/AKO_10KE.csv 2017-11-23 15:35:01
## 3496       Akoka fourth download KE/AKO_10KE.csv 2017-11-24 07:55:01
## 3497       Akoka fourth download KE/AKO_10KE.csv 2017-11-24 16:35:01
## 3498       Akoka fourth download KE/AKO_10KE.csv 2017-11-24 19:35:01
## 3499        Akoka fouth download CC/AKO_10CC.csv 2017-11-17 17:11:01
## 3500        Akoka fouth download CC/AKO_10CC.csv 2017-11-17 23:41:01
## 3501        Akoka fouth download CC/AKO_10CC.csv 2017-11-18 09:11:01
## 3502        Akoka fouth download CC/AKO_10CC.csv 2017-11-18 10:01:01
## 3503        Akoka fouth download CC/AKO_10CC.csv 2017-11-18 13:51:01
## 3504        Akoka fouth download CC/AKO_10CC.csv 2017-11-18 17:11:01
## 3505        Akoka fouth download CC/AKO_10CC.csv 2017-11-18 20:21:01
## 3506        Akoka fouth download CC/AKO_10CC.csv 2017-11-19 05:21:01
## 3507        Akoka fouth download CC/AKO_10CC.csv 2017-11-19 21:11:01
## 3508           DL4_corrected_CC/AKO_10CC_DL4.csv 2017-11-12 00:01:01
## 3509           DL4_corrected_KE/AKO_10KE_DL4.csv 2017-11-12 07:15:01
## 3510           DL4_corrected_KE/AKO_10KE_DL4.csv 2017-11-12 21:45:01
## 3511                     CC_DL3/AKO_10CC_DL3.csv 2017-10-31 08:47:01
## 3512           DL9_corrected_CC/MUS_01CC (B).csv 2018-02-04 00:01:01
## 3513  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-21 20:18:01
## 3514  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-21 23:28:01
## 3515  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-22 07:08:01
## 3516  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-22 20:38:01
## 3517  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-23 06:48:01
## 3518  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-23 09:08:01
## 3519  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-23 19:18:01
## 3520  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-24 04:48:01
## 3521  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-24 06:58:01
## 3522  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-24 10:18:01
## 3523  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-24 16:28:01
## 3524  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-24 19:48:01
## 3525  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-25 06:18:01
## 3526  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-25 07:08:01
## 3527  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-25 10:58:01
## 3528  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-25 12:18:01
## 3529  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-25 17:48:01
## 3530  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-26 08:58:01
## 3531  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-26 10:38:01
## 3532  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-26 19:38:01
## 3533  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-27 09:18:01
## 3534  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-27 19:08:01
## 3535  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-28 19:58:01
## 3536  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-29 07:08:01
## 3537  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-29 08:28:01
## 3538  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-29 19:38:01
## 3539  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-30 06:48:01
## 3540  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-30 08:58:01
## 3541  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-30 20:18:01
## 3542  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-30 22:38:01
## 3543  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-31 06:48:01
## 3544  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-31 10:18:01
## 3545  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-01-31 20:48:01
## 3546  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-01 06:48:01
## 3547  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-01 08:58:01
## 3548  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-01 20:58:01
## 3549  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-02 06:48:01
## 3550  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-02 09:28:01
## 3551  TIMESTAMP CORRECTED KE/MUS_01KE(B)_DL8.csv 2018-02-02 20:18:01
## 3552  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-21 08:01:01
## 3553  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-21 20:01:01
## 3554  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-21 21:01:01
## 3555  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-22 06:51:01
## 3556  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-22 09:31:01
## 3557  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-22 17:01:01
## 3558  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-22 20:21:01
## 3559  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-23 06:51:01
## 3560  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-23 19:51:01
## 3561  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-27 11:51:01
## 3562  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-27 13:11:01
## 3563  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-27 18:21:01
## 3564  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-28 08:21:01
## 3565  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-28 12:51:01
## 3566  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-28 19:51:01
## 3567  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-28 21:11:01
## 3568  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-29 06:51:01
## 3569  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-29 10:21:01
## 3570  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-29 17:31:01
## 3571  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-29 19:51:01
## 3572  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-30 06:31:01
## 3573  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-30 10:21:01
## 3574  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-30 20:11:01
## 3575  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-30 21:11:01
## 3576  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-31 06:51:01
## 3577  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-31 08:31:01
## 3578  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL8.csv 2018-01-31 21:21:01
## 3579  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-02 17:47:01
## 3580  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-03 11:57:01
## 3581  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-03 13:27:01
## 3582  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-03 20:37:01
## 3583  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-04 05:47:01
## 3584  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-04 21:57:01
## 3585  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-05 05:47:01
## 3586  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-05 21:47:01
## 3587  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-06 06:07:01
## 3588  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-09 10:17:01
## 3589  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-16 17:07:01
## 3590  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-16 19:27:01
## 3591  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-16 20:57:01
## 3592  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-17 09:17:01
## 3593  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-17 11:17:01
## 3594  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-17 13:57:01
## 3595  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-18 20:57:01
## 3596  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-19 12:37:01
## 3597  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-19 19:47:01
## 3598  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-20 19:47:01
## 3599  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-21 21:07:01
## 3600  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-22 09:37:01
## 3601  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-22 11:07:01
## 3602  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-22 19:37:01
## 3603  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-25 10:47:01
## 3604  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-25 13:07:01
## 3605  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-25 14:47:01
## 3606  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-25 15:27:01
## 3607  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-25 20:47:01
## 3608  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-26 09:37:01
## 3609  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-26 10:57:01
## 3610  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-26 11:57:01
## 3611  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-26 15:37:01
## 3612  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-27 09:37:01
## 3613  TIMESTAMP CORRECTED CC/MUS_01CC(B)_DL7.csv 2017-12-27 20:17:01
## 3614           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-26 08:49:01
## 3615           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-26 12:49:01
## 3616           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-26 20:39:01
## 3617           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-27 05:49:01
## 3618           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-27 19:49:01
## 3619           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-28 05:49:01
## 3620           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-28 22:19:01
## 3621           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-29 05:49:01
## 3622           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-29 20:49:01
## 3623           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-30 05:49:01
## 3624           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-30 20:09:01
## 3625           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-11-30 21:59:01
## 3626           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-01 11:09:01
## 3627           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-01 20:09:01
## 3628           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-02 10:49:01
## 3629           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-02 18:29:01
## 3630           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-03 10:39:01
## 3631           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-03 12:19:01
## 3632           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-03 20:19:01
## 3633           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-04 06:19:01
## 3634           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-04 19:49:01
## 3635           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-05 21:39:01
## 3636           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-06 05:49:01
## 3637           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-06 20:49:01
## 3638           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-07 05:49:01
## 3639           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-07 14:59:01
## 3640           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-07 20:09:01
## 3641           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-08 05:49:01
## 3642           DL5_corrected_KE/MUS_01KE_DL5.csv 2017-12-08 20:49:01
## 3643        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-19 09:24:01
## 3644        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-19 20:14:01
## 3645        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-20 06:04:01
## 3646        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-20 20:54:01
## 3647        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-21 05:34:01
## 3648        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-21 21:34:01
## 3649        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-22 05:54:01
## 3650        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-22 20:54:01
## 3651        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-22 23:24:01
## 3652        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-23 05:24:01
## 3653        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-23 10:54:01
## 3654        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-23 21:04:01
## 3655        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-24 05:44:01
## 3656        DL4_corrected_KE/MUS_01KE(B)_DL4.csv 2017-11-24 20:14:01
## 3657        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-19 10:16:01
## 3658        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-19 13:26:01
## 3659        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-19 20:16:01
## 3660        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-20 05:46:01
## 3661        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-20 20:16:01
## 3662        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-20 20:56:01
## 3663        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-21 05:36:01
## 3664        DL4_corrected_CC/MUS_01CC(B)_DL4.csv 2017-11-21 06:36:01
## 3665                     CC_DL2/MUS_01CC_DL2.csv 2017-10-14 00:05:00
## 3666                     KE_DL2/MUS_01KE_DL2.csv 2017-10-14 06:51:00
## 3667                     KE_DL2/MUS_01KE_DL2.csv 2017-10-14 08:51:00
## 3668                     KE_DL2/MUS_01KE_DL2.csv 2017-10-14 14:51:00
## 3669                     KE_DL2/MUS_01KE_DL2.csv 2017-10-14 19:51:00
## 3670                     KE_DL2/MUS_01KE_DL2.csv 2017-10-15 06:21:00
## 3671                     KE_DL2/MUS_01KE_DL2.csv 2017-10-15 09:01:00
## 3672                     KE_DL2/MUS_01KE_DL2.csv 2017-10-15 11:21:00
## 3673                     KE_DL2/MUS_01KE_DL2.csv 2017-10-15 16:51:00
## 3674                     KE_DL2/MUS_01KE_DL2.csv 2017-10-15 20:31:00
## 3675                     KE_DL2/MUS_01KE_DL2.csv 2017-10-16 07:01:00
## 3676                     KE_DL2/MUS_01KE_DL2.csv 2017-10-16 09:21:00
## 3677                     KE_DL2/MUS_01KE_DL2.csv 2017-10-17 06:21:00
## 3678                     KE_DL2/MUS_01KE_DL2.csv 2017-10-17 18:11:00
## 3679                     KE_DL2/MUS_01KE_DL2.csv 2017-10-17 19:21:00
## 3680                     KE_DL2/MUS_01KE_DL2.csv 2017-10-18 15:21:00
## 3681                     KE_DL2/MUS_01KE_DL2.csv 2017-10-18 17:21:00
## 3682                     KE_DL2/MUS_01KE_DL2.csv 2017-10-18 20:11:00
## 3683                     KE_DL2/MUS_01KE_DL2.csv 2017-10-19 06:51:00
## 3684                     KE_DL2/MUS_01KE_DL2.csv 2017-10-19 09:11:00
## 3685                     KE_DL2/MUS_01KE_DL2.csv 2017-10-19 17:21:00
## 3686                     KE_DL2/MUS_01KE_DL2.csv 2017-10-20 07:21:00
## 3687                     KE_DL2/MUS_01KE_DL2.csv 2017-10-20 08:41:00
## 3688                     KE_DL2/MUS_01KE_DL2.csv 2017-10-20 15:21:00
## 3689                     KE_DL2/MUS_01KE_DL2.csv 2017-10-20 20:51:00
## 3690                     KE_DL2/MUS_01KE_DL2.csv 2017-10-21 08:51:00
## 3691                     KE_DL2/MUS_01KE_DL2.csv 2017-10-21 13:51:00
## 3692                     KE_DL2/MUS_01KE_DL2.csv 2017-10-21 19:41:00
## 3693                     KE_DL2/MUS_01KE_DL2.csv 2017-10-22 09:21:00
## 3694                     KE_DL2/MUS_01KE_DL2.csv 2017-10-22 15:01:00
## 3695                     KE_DL2/MUS_01KE_DL2.csv 2017-10-22 19:51:00
## 3696                     KE_DL2/MUS_01KE_DL2.csv 2017-10-23 07:11:00
## 3697                     KE_DL2/MUS_01KE_DL2.csv 2017-10-23 15:31:00
## 3698                     KE_DL2/MUS_01KE_DL2.csv 2017-10-23 17:31:00
## 3699                     KE_DL2/MUS_01KE_DL2.csv 2017-10-23 20:21:00
## 3700                     KE_DL2/MUS_01KE_DL2.csv 2017-10-24 07:21:00
## 3701                     KE_DL2/MUS_01KE_DL2.csv 2017-10-24 16:21:00
## 3702                     KE_DL2/MUS_01KE_DL2.csv 2017-10-25 06:51:00
## 3703                     KE_DL2/MUS_01KE_DL2.csv 2017-10-25 16:51:00
## 3704                     KE_DL2/MUS_01KE_DL2.csv 2017-10-26 09:51:00
## 3705                     KE_DL2/MUS_01KE_DL2.csv 2017-10-26 17:01:00
## 3706                     KE_DL2/MUS_01KE_DL2.csv 2017-10-26 20:11:00
## 3707                            MUS_01KE_DL1.csv 2017-10-06 06:53:00
## 3708                            MUS_01KE_DL1.csv 2017-10-07 15:03:00
## 3709                            MUS_01KE_DL1.csv 2017-10-07 18:13:00
## 3710                            MUS_01KE_DL1.csv 2017-10-08 08:43:00
## 3711                            MUS_01KE_DL1.csv 2017-10-08 14:23:00
## 3712                            MUS_01KE_DL1.csv 2017-10-08 20:33:00
## 3713                            MUS_01KE_DL1.csv 2017-10-09 06:53:00
## 3714                            MUS_01KE_DL1.csv 2017-10-09 08:23:00
## 3715                            MUS_01KE_DL1.csv 2017-10-09 10:03:00
## 3716                            MUS_01KE_DL1.csv 2017-10-10 20:53:00
## 3717                            MUS_01KE_DL1.csv 2017-10-11 08:33:00
## 3718                            MUS_01KE_DL1.csv 2017-10-11 19:43:00
## 3719                            MUS_01KE_DL1.csv 2017-10-12 10:23:00
## 3720                            MUS_01KE_DL1.csv 2017-10-12 12:23:00
## 3721                            MUS_01KE_DL1.csv 2017-10-12 17:03:00
## 3722                            MUS_01KE_DL1.csv 2017-10-12 20:43:00
## 3723                            MUS_01CC_DL1.csv 2017-10-06 17:04:00
## 3724                            MUS_01CC_DL1.csv 2017-10-06 20:24:00
## 3725                            MUS_01CC_DL1.csv 2017-10-07 09:34:00
## 3726                            MUS_01CC_DL1.csv 2017-10-09 13:34:00
## 3727                            MUS_01CC_DL1.csv 2017-10-10 20:54:00
## 3728                            MUS_01CC_DL1.csv 2017-10-10 22:14:00
## 3729                            MUS_01CC_DL1.csv 2017-10-11 08:24:00
## 3730                            MUS_01CC_DL1.csv 2017-10-11 17:14:00
## 3731                            MUS_01CC_DL1.csv 2017-10-11 19:54:00
## 3732                            MUS_01CC_DL1.csv 2017-10-12 07:34:00
## 3733               DL9_corrected_CC/MUS_02CC.csv 2018-02-17 12:20:01
## 3734     TIMESTAMP CORRECTED CC/MUS_02CC_DL8.csv 2018-01-30 21:23:01
## 3735     TIMESTAMP CORRECTED CC/MUS_02CC_DL8.csv 2018-01-30 22:33:01
## 3736                            MUS_02CC_DL1.csv 2017-10-10 07:36:00
## 3737                            MUS_02CC_DL1.csv 2017-10-10 19:56:00
## 3738           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-02-11 08:23:00
## 3739           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-02-11 14:23:00
## 3740           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-02-11 22:23:00
## 3741           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-02-11 23:03:00
## 3742           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-03-11 03:13:00
## 3743           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-04-11 07:03:00
## 3744           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-04-11 13:23:00
## 3745           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-04-11 16:03:00
## 3746           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-04-11 21:13:00
## 3747           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 04:43:00
## 3748           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 07:53:00
## 3749           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 08:33:00
## 3750           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 09:23:00
## 3751           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 15:33:00
## 3752           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 20:03:00
## 3753           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 21:03:00
## 3754           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-05-11 23:03:00
## 3755           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-06-11 05:43:00
## 3756           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-06-11 08:23:00
## 3757           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-06-11 13:53:00
## 3758           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-06-11 14:43:00
## 3759           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-06-11 18:33:00
## 3760           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-07-11 06:43:00
## 3761           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-07-11 08:23:00
## 3762           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-07-11 20:03:00
## 3763           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-07-11 22:53:00
## 3764           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-08-11 03:43:00
## 3765           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-08-11 08:23:00
## 3766           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-08-11 16:43:00
## 3767           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-09-11 07:43:00
## 3768           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-09-11 12:53:00
## 3769           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-09-11 15:23:00
## 3770           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-09-11 17:53:00
## 3771           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-11 02:13:00
## 3772           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-11 10:53:00
## 3773           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-11 22:13:00
## 3774           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-11 22:53:00
## 3775           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-28 10:23:00
## 3776           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-28 12:13:00
## 3777           MUSHIN DOWNLOAD 5_KE/MUS_03KE.csv 2017-10-28 15:23:00
## 3778           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-02-11 00:20:00
## 3779           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-02-11 09:20:00
## 3780           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-02-11 11:00:00
## 3781           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-02-11 20:00:00
## 3782           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-02-11 22:10:00
## 3783           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-03-11 03:10:00
## 3784           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-03-11 08:00:00
## 3785           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-03-11 13:30:00
## 3786           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-03-11 19:00:00
## 3787           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 05:10:00
## 3788           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 10:50:00
## 3789           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 11:40:00
## 3790           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 15:50:00
## 3791           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 21:50:00
## 3792           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-04-11 23:20:00
## 3793           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-05-11 01:40:00
## 3794           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-05-11 21:00:00
## 3795           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-06-11 13:30:00
## 3796           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-06-11 14:50:00
## 3797           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-06-11 17:20:00
## 3798           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-06-11 18:10:00
## 3799           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-07-11 08:20:00
## 3800           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-07-11 14:00:00
## 3801           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-07-11 15:10:00
## 3802           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-07-11 22:00:00
## 3803           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-08-11 06:50:00
## 3804           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-08-11 08:50:00
## 3805           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-08-11 11:50:00
## 3806           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 00:50:00
## 3807           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 07:20:00
## 3808           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 09:00:00
## 3809           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 14:10:00
## 3810           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 16:20:00
## 3811           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-09-11 21:20:00
## 3812           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 05:40:00
## 3813           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 09:40:00
## 3814           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 11:40:00
## 3815           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 12:40:00
## 3816           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 13:40:00
## 3817           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 16:50:00
## 3818           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 19:50:00
## 3819           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 20:50:00
## 3820           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-11 22:20:00
## 3821           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-28 10:20:00
## 3822           MUSHIN DOWNLOAD 5_CC/MUS_03CC.csv 2017-10-28 11:50:00
## 3823               DL9_corrected_KE/MUS_04KE.csv 2018-02-05 13:25:01
## 3824     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-13 20:20:01
## 3825     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-13 21:30:01
## 3826     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-14 10:30:01
## 3827     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-14 14:10:01
## 3828     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-14 16:50:01
## 3829     TIMESTAMP CORRECTED CC/MUS_05CC_DL7.csv 2018-01-14 19:40:01
## 3830              DL9_corrected_CC/MUS_07AMB.csv 2018-02-04 00:07:01
## 3831    TIMESTAMP CORRECTED CC/MUS_07AMB_DL8.csv 2018-01-21 00:00:01
## 3832    TIMESTAMP CORRECTED CC/MUS_07AMB_DL7.csv 2018-01-07 00:08:01
## 3833          DL6_corrected_CC/MUS_07AMB_DL6.csv 2017-12-10 00:08:01
## 3834          DL5_corrected_CC/MUS_07AMB_DL5.csv 2017-11-29 09:17:01
## 3835          DL5_corrected_CC/MUS_07AMB_DL5.csv 2017-11-29 17:57:01
## 3836          DL5_corrected_CC/MUS_07AMB_DL5.csv 2017-11-29 21:37:01
## 3837          DL5_corrected_CC/MUS_07AMB_DL5.csv 2017-11-30 19:57:01
## 3838          DL5_corrected_CC/MUS_07AMB_DL5.csv 2017-12-01 14:27:01
## 3839          DL4_corrected_CC/MUS_07AMB_DL4.csv 2017-11-19 00:06:01
## 3840           DL4_corrected_KE/MUS_07ke_DL4.csv 2017-11-24 19:22:00
## 3841                    CC_DL3/MUS_07AMB_DL3.csv 2017-11-08 16:16:00
## 3842                    CC_DL3/MUS_07AMB_DL3.csv 2017-11-09 06:46:00
## 3843                    CC_DL3/MUS_07AMB_DL3.csv 2017-11-10 19:26:00
## 3844              DL9_corrected_CC/MUS_09AMB.csv 2018-02-07 14:16:01
## 3845              DL9_corrected_CC/MUS_09AMB.csv 2018-02-07 15:16:01
## 3846              DL9_corrected_CC/MUS_09AMB.csv 2018-02-15 13:16:01
## 3847    TIMESTAMP CORRECTED CC/MUS_09AMB_DL7.csv 2018-01-10 14:16:01
## 3848    TIMESTAMP CORRECTED CC/MUS_09AMB_DL7.csv 2018-01-16 12:16:01
## 3849          DL6_corrected_CC/MUS_09AMB_DL6.csv 2017-12-09 13:56:01
## 3850          DL6_corrected_CC/MUS_09AMB_DL6.csv 2017-12-19 13:46:01
## 3851          DL6_corrected_CC/MUS_09AMB_DL6.csv 2017-12-25 12:46:01
## 3852          DL6_corrected_CC/MUS_09AMB_DL6.csv 2018-01-02 12:16:01
## 3853          DL5_corrected_CC/MUS_09AMB_DL5.csv 2017-11-26 00:00:00
## 3854          DL4_corrected_CC/MUS_09AMB_DL4.csv 2017-11-15 10:23:00
## 3855          DL4_corrected_CC/MUS_09AMB_DL4.csv 2017-11-17 14:23:00
## 3856          DL4_corrected_CC/MUS_09AMB_DL4.csv 2017-11-23 08:53:00
## 3857                    CC_DL3/MUS_09AMB_DL3.csv 2017-11-07 12:25:00
## 3858                    CC_DL3/MUS_09AMB_DL3.csv 2017-11-08 07:25:00
## 3859      Mushin fourth download KE/MUS_10KE.csv 2017-11-25 11:24:01
## 3860           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-02-12 14:06:00
## 3861           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-02-12 16:46:00
## 3862           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-03-12 00:56:00
## 3863           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-03-12 07:16:00
## 3864           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-03-12 08:56:00
## 3865           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-03-12 13:46:00
## 3866           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-04-12 06:36:00
## 3867           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-04-12 07:16:00
## 3868           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-04-12 11:06:00
## 3869           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-04-12 11:46:00
## 3870           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 04:56:00
## 3871           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 11:16:00
## 3872           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 14:46:00
## 3873           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 17:06:00
## 3874           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 18:06:00
## 3875           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 19:06:00
## 3876           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-05-12 20:06:00
## 3877           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-06-12 07:36:00
## 3878           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-06-12 16:26:00
## 3879           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 07:16:00
## 3880           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 09:46:00
## 3881           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 12:46:00
## 3882           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 13:46:00
## 3883           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 14:46:00
## 3884           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-07-12 22:46:00
## 3885           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 05:36:00
## 3886           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 07:36:00
## 3887           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 12:16:00
## 3888           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 15:46:00
## 3889           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 17:16:00
## 3890           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-08-12 21:56:00
## 3891           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-09-12 00:06:00
## 3892           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-09-12 02:16:00
## 3893           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-09-12 06:46:00
## 3894           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-11-25 13:26:00
## 3895           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-11-25 14:56:00
## 3896           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-11-25 17:06:00
## 3897           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-11-25 17:56:00
## 3898           MUSHIN DOWNLOAD 5_CC/MUS_10CC.csv 2017-11-25 18:36:00
## 3899           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 00:48:01
## 3900           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 08:08:01
## 3901           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 11:08:01
## 3902           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 12:48:01
## 3903           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 15:38:01
## 3904           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 16:48:01
## 3905           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-02-12 23:38:01
## 3906           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-03-12 00:08:01
## 3907           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-03-12 00:48:01
## 3908           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-03-12 05:18:01
## 3909           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-03-12 08:48:01
## 3910           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-03-12 20:18:01
## 3911           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 00:18:01
## 3912           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 01:48:01
## 3913           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 06:18:01
## 3914           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 12:38:01
## 3915           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 14:18:01
## 3916           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 18:38:01
## 3917           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 19:18:01
## 3918           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 21:18:01
## 3919           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-04-12 23:38:01
## 3920           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 00:18:01
## 3921           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 03:18:01
## 3922           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 06:28:01
## 3923           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 08:48:01
## 3924           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 11:38:01
## 3925           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 13:18:01
## 3926           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 19:18:01
## 3927           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-05-12 22:38:01
## 3928           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 00:08:01
## 3929           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 02:48:01
## 3930           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 04:18:01
## 3931           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 05:58:01
## 3932           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 09:48:01
## 3933           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 11:18:01
## 3934           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 16:38:01
## 3935           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-06-12 23:08:01
## 3936           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 03:18:01
## 3937           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 10:08:01
## 3938           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 12:18:01
## 3939           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 14:18:01
## 3940           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 17:08:01
## 3941           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-07-12 19:08:01
## 3942           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 03:18:01
## 3943           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 05:18:01
## 3944           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 07:38:01
## 3945           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 18:08:01
## 3946           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 20:08:01
## 3947           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-08-12 23:28:01
## 3948           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-09-12 00:08:01
## 3949           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-09-12 01:38:01
## 3950           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-09-12 07:08:01
## 3951           MUSHIN DOWNLOAD 5_KE/MUS_10KE.csv 2017-11-25 13:28:01
## 3952      Mushin fourth download CC/MUS_10CC.csv 2017-11-25 00:01:00
## 3953         DL6_corrected_LPG/SHO_01LPG_DL6.csv 2017-12-11 11:58:00
## 3954          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 00:30:00
## 3955          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 03:10:00
## 3956          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 05:40:00
## 3957          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 13:00:00
## 3958          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 14:40:00
## 3959          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 17:50:00
## 3960          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-02-12 23:40:00
## 3961          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 01:20:00
## 3962          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 03:00:00
## 3963          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 06:10:00
## 3964          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 09:40:00
## 3965          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 11:40:00
## 3966          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 13:40:00
## 3967          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 14:40:00
## 3968          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 16:10:00
## 3969          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-03-12 20:50:00
## 3970          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 04:20:00
## 3971          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 06:20:00
## 3972          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 07:10:00
## 3973          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 11:10:00
## 3974          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 13:30:00
## 3975          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 15:10:00
## 3976          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 17:50:00
## 3977          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-04-12 23:20:00
## 3978          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 02:50:00
## 3979          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 09:00:00
## 3980          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 11:10:00
## 3981          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 12:10:00
## 3982          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 16:20:00
## 3983          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 17:20:00
## 3984          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 18:20:00
## 3985          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 21:20:00
## 3986          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-05-12 23:20:00
## 3987          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 01:50:00
## 3988          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 06:10:00
## 3989          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 10:30:00
## 3990          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 12:10:00
## 3991          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 13:10:00
## 3992          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 14:40:00
## 3993          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 16:50:00
## 3994          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 17:50:00
## 3995          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-06-12 21:20:00
## 3996          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 03:20:00
## 3997          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 07:40:00
## 3998          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 09:40:00
## 3999          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 13:50:00
## 4000          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 18:10:00
## 4001          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 21:00:00
## 4002          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-07-12 23:20:00
## 4003          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-08-12 05:40:00
## 4004          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-08-12 07:20:00
## 4005          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-08-12 09:10:00
## 4006          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 11:00:00
## 4007          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 14:40:00
## 4008          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 17:20:00
## 4009          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 18:20:00
## 4010          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 20:50:00
## 4011          SHOMOLU DOWNLOAD 5_KE/SHO_01KE.csv 2017-11-25 23:50:00
## 4012        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 00:12:00
## 4013        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 03:22:00
## 4014        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 05:42:00
## 4015        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 06:42:00
## 4016        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 08:32:00
## 4017        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 13:02:00
## 4018        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 16:42:00
## 4019        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 19:42:00
## 4020        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-02-12 22:32:00
## 4021        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 00:22:00
## 4022        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 01:32:00
## 4023        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 03:02:00
## 4024        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 05:22:00
## 4025        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 08:32:00
## 4026        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 09:32:00
## 4027        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 15:02:00
## 4028        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 16:52:00
## 4029        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 19:42:00
## 4030        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 21:32:00
## 4031        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-03-12 22:42:00
## 4032        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 01:12:00
## 4033        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 03:42:00
## 4034        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 07:02:00
## 4035        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 08:02:00
## 4036        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 13:02:00
## 4037        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-04-12 16:52:00
## 4038        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 00:42:00
## 4039        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 02:42:00
## 4040        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 08:42:00
## 4041        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 09:32:00
## 4042        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 14:02:00
## 4043        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-05-12 19:32:00
## 4044        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-06-12 07:12:00
## 4045        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-06-12 13:32:00
## 4046        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-06-12 16:42:00
## 4047        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-06-12 19:52:00
## 4048        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 01:42:00
## 4049        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 06:02:00
## 4050        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 08:42:00
## 4051        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 09:42:00
## 4052        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 14:02:00
## 4053        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 15:02:00
## 4054        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 18:02:00
## 4055        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 19:02:00
## 4056        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 21:02:00
## 4057        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-07-12 22:02:00
## 4058        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-08-12 01:42:00
## 4059        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-08-12 06:52:00
## 4060        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 11:22:00
## 4061        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 12:02:00
## 4062        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 14:02:00
## 4063        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 16:42:00
## 4064        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 21:02:00
## 4065        SHOMOLU DOWNLOAD 5_LPG/SHO_01LPG.csv 2017-11-25 22:02:00
## 4066          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 00:16:00
## 4067          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 02:16:00
## 4068          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 04:06:00
## 4069          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 06:56:00
## 4070          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 07:56:00
## 4071          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 08:36:00
## 4072          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 09:16:00
## 4073          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 13:16:00
## 4074          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 15:06:00
## 4075          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 16:06:00
## 4076          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 18:26:00
## 4077          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 19:26:00
## 4078          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 21:36:00
## 4079          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 22:16:00
## 4080          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-02-12 23:26:00
## 4081          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 00:56:00
## 4082          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 03:06:00
## 4083          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 07:16:00
## 4084          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 09:06:00
## 4085          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 10:46:00
## 4086          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 11:46:00
## 4087          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 17:36:00
## 4088          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 19:06:00
## 4089          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 19:46:00
## 4090          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 20:36:00
## 4091          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-03-12 21:36:00
## 4092          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 00:56:00
## 4093          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 07:36:00
## 4094          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 09:06:00
## 4095          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 12:16:00
## 4096          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 13:46:00
## 4097          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 15:26:00
## 4098          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 16:36:00
## 4099          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-04-12 18:06:00
## 4100          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 02:06:00
## 4101          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 05:06:00
## 4102          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 08:36:00
## 4103          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 11:46:00
## 4104          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 13:36:00
## 4105          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 17:26:00
## 4106          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 18:26:00
## 4107          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-05-12 21:26:00
## 4108          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 03:36:00
## 4109          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 05:06:00
## 4110          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 07:06:00
## 4111          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 07:46:00
## 4112          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 12:16:00
## 4113          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 14:16:00
## 4114          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 16:06:00
## 4115          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 17:06:00
## 4116          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 17:56:00
## 4117          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-06-12 22:06:00
## 4118          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 00:16:00
## 4119          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 01:46:00
## 4120          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 03:06:00
## 4121          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 05:26:00
## 4122          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 09:06:00
## 4123          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 10:56:00
## 4124          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 12:46:00
## 4125          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 16:26:00
## 4126          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 17:16:00
## 4127          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 18:56:00
## 4128          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 20:46:00
## 4129          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 22:36:00
## 4130          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-07-12 23:16:00
## 4131          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-08-12 03:36:00
## 4132          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-08-12 07:36:00
## 4133          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-08-12 08:46:00
## 4134          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-08-12 10:46:00
## 4135          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 10:56:00
## 4136          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 12:06:00
## 4137          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 14:16:00
## 4138          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 17:26:00
## 4139          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 19:16:00
## 4140          SHOMOLU DOWNLOAD 5_CC/SHO_01CC.csv 2017-11-25 21:56:00
## 4141               DL9_corrected_CC/SHO_02CC.csv 2018-02-14 06:36:00
## 4142          SHOMOLU DOWNLOAD 5_CC/SHO_02CC.csv 2017-11-25 00:09:00
## 4143          SHOMOLU DOWNLOAD 5_KE/SHO_02KE.csv 2017-11-25 07:23:00
## 4144            DL9_corrected_KE/SHO_03KE(B).csv 2018-02-04 00:09:01
## 4145            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-04 18:35:01
## 4146            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-04 20:05:01
## 4147            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-05 16:15:01
## 4148            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-07 17:15:01
## 4149            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-09 17:45:01
## 4150            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-15 20:15:01
## 4151            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-18 20:05:01
## 4152            DL9_corrected_CC/SHO_03CC(B).csv 2018-02-24 15:15:01
## 4153            DL9_corrected_CC/SHO_03CC(B).csv 2018-03-01 10:45:01
## 4154  TIMESTAMP CORRECTED KE/SHO_03KE(B)_DL8.csv 2018-01-21 00:02:01
## 4155  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-21 19:59:01
## 4156  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-22 17:49:01
## 4157  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-23 12:29:01
## 4158  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-23 19:49:01
## 4159  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-25 13:09:01
## 4160  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-26 17:49:01
## 4161  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-26 21:19:01
## 4162  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-01-27 08:19:01
## 4163  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL8.csv 2018-02-01 20:49:01
## 4164  TIMESTAMP CORRECTED KE/SHO_03KE(B)_DL7.csv 2018-01-07 00:04:01
## 4165  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-07 17:31:01
## 4166  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-10 19:21:01
## 4167  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-12 14:51:01
## 4168  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-17 18:11:01
## 4169  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-18 07:21:01
## 4170  TIMESTAMP CORRECTED CC/SHO_03CC(B)_DL7.csv 2018-01-19 06:51:01
## 4171        DL6_corrected_KE/SHO_03KE(B)_DL6.csv 2017-12-10 00:01:01
## 4172        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-10 08:45:01
## 4173        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-10 17:45:01
## 4174        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-10 18:45:01
## 4175        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-11 18:45:01
## 4176        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-12 21:15:01
## 4177        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-25 08:25:01
## 4178        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-25 11:55:01
## 4179        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-25 21:15:01
## 4180        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-26 09:35:01
## 4181        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2017-12-27 09:05:01
## 4182        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2018-01-03 09:25:01
## 4183        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2018-01-04 08:35:01
## 4184        DL6_corrected_CC/SHO_03CC(B)_DL6.csv 2018-01-04 16:45:01
## 4185           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-26 00:00:01
## 4186           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-26 13:00:01
## 4187           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-26 22:40:01
## 4188           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-27 07:10:01
## 4189           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-27 15:00:01
## 4190           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-29 15:30:01
## 4191           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-29 19:20:01
## 4192           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-11-30 19:50:01
## 4193           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-12-08 12:40:01
## 4194           DL5_corrected_CC/SHO_03CC_DL5.csv 2017-12-08 20:10:01
## 4195           DL5_corrected_KE/SHO_03KE_DL5.csv 2017-12-07 18:22:01
## 4196        DL4_corrected_KE/SHO_03KE(B)_DL4.csv 2017-11-18 00:00:01
## 4197        DL4_corrected_CC/SHO_03CC(B)_DL4.csv 2017-11-22 06:47:01
## 4198        DL4_corrected_CC/SHO_03CC(B)_DL4.csv 2017-11-23 14:47:01
## 4199        DL4_corrected_CC/SHO_03CC(B)_DL4.csv 2017-11-24 17:37:01
## 4200        DL4_corrected_CC/SHO_03CC(B)_DL4.csv 2017-11-24 18:47:01
## 4201                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-15 06:25:00
## 4202                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-15 16:45:00
## 4203                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-16 06:15:00
## 4204                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-16 09:15:00
## 4205                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-16 15:15:00
## 4206                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-16 16:05:00
## 4207                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-16 21:05:00
## 4208                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-17 05:25:00
## 4209                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-17 07:45:00
## 4210                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-17 13:05:00
## 4211                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-17 16:45:00
## 4212                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-18 04:55:00
## 4213                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-18 06:05:00
## 4214                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-18 08:35:00
## 4215                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-18 17:25:00
## 4216                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-19 05:25:00
## 4217                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-19 07:55:00
## 4218                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-19 14:25:00
## 4219                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-19 17:35:00
## 4220                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-20 05:15:00
## 4221                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-20 07:55:00
## 4222                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-20 09:25:00
## 4223                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-20 16:05:00
## 4224                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-21 07:35:00
## 4225                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-21 09:25:00
## 4226                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-22 07:25:00
## 4227                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-22 13:35:00
## 4228                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-22 19:45:00
## 4229                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-23 05:45:00
## 4230                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-23 20:45:00
## 4231                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-24 08:05:00
## 4232                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-24 09:55:00
## 4233                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-24 16:35:00
## 4234                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-25 06:15:00
## 4235                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-25 09:05:00
## 4236                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-25 13:25:00
## 4237                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-25 14:35:00
## 4238                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-25 16:45:00
## 4239                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-26 09:05:00
## 4240                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-26 17:15:00
## 4241                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-27 07:55:00
## 4242                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-27 13:55:00
## 4243                   LPG_DL2/SHO_03LPG_DL2.csv 2017-10-27 16:45:00
## 4244                     CC_DL2/SHO_03CC_DL2.csv 2017-10-15 17:36:00
## 4245                     CC_DL2/SHO_03CC_DL2.csv 2017-10-16 06:16:00
## 4246                     CC_DL2/SHO_03CC_DL2.csv 2017-10-16 10:06:00
## 4247                     CC_DL2/SHO_03CC_DL2.csv 2017-10-20 15:56:00
## 4248                     CC_DL2/SHO_03CC_DL2.csv 2017-10-21 14:46:00
## 4249                     CC_DL2/SHO_03CC_DL2.csv 2017-10-21 16:16:00
## 4250                     CC_DL2/SHO_03CC_DL2.csv 2017-10-21 17:46:00
## 4251                     CC_DL2/SHO_03CC_DL2.csv 2017-10-23 08:56:00
## 4252                     CC_DL2/SHO_03CC_DL2.csv 2017-10-24 05:16:00
## 4253                     CC_DL2/SHO_03CC_DL2.csv 2017-10-25 06:56:00
## 4254                     CC_DL2/SHO_03CC_DL2.csv 2017-10-25 13:06:00
## 4255                     CC_DL2/SHO_03CC_DL2.csv 2017-10-26 09:16:00
## 4256                     CC_DL2/SHO_03CC_DL2.csv 2017-10-26 09:56:00
## 4257                     CC_DL2/SHO_03CC_DL2.csv 2017-10-26 17:26:00
## 4258                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-07 17:24:00
## 4259                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-09 05:54:00
## 4260                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-09 07:54:00
## 4261                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-09 16:24:00
## 4262                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-09 20:54:00
## 4263                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-10 05:54:00
## 4264                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-10 08:24:00
## 4265                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-10 10:54:00
## 4266                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-10 16:54:00
## 4267                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-11 05:24:00
## 4268                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-11 07:54:00
## 4269                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-11 16:04:00
## 4270                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-11 17:24:00
## 4271                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-12 05:24:00
## 4272                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-12 08:04:00
## 4273                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-12 15:24:00
## 4274                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-12 16:34:00
## 4275                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 05:54:00
## 4276                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 07:54:00
## 4277                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 09:04:00
## 4278                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 12:44:00
## 4279                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 14:04:00
## 4280                   LPG_DL1/SHO_03LPG_DL1.csv 2017-10-13 14:54:00
## 4281                            SHO_03CC_DL1.csv 2017-10-08 05:55:00
## 4282                            SHO_03CC_DL1.csv 2017-10-08 07:25:00
## 4283                            SHO_03CC_DL1.csv 2017-10-08 15:45:00
## 4284                            SHO_03CC_DL1.csv 2017-10-08 21:55:00
## 4285                            SHO_03CC_DL1.csv 2017-10-11 17:45:00
## 4286            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-04 07:33:01
## 4287            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-04 17:33:01
## 4288            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-04 20:53:01
## 4289            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-05 10:13:01
## 4290            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-05 20:23:01
## 4291            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-06 07:13:01
## 4292            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-06 09:53:01
## 4293            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-06 20:23:01
## 4294            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-07 07:33:01
## 4295            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-07 20:23:01
## 4296            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-08 07:33:01
## 4297            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-08 18:53:01
## 4298            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-09 07:23:01
## 4299            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-09 19:23:01
## 4300            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-10 07:43:01
## 4301            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-10 13:43:01
## 4302            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-10 19:53:01
## 4303            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-11 08:13:01
## 4304            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-11 09:23:01
## 4305            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-15 20:33:01
## 4306            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-16 20:13:01
## 4307            DL9_corrected_CC/SHO_04CC(B).csv 2018-02-17 08:43:01
## 4308            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-11 19:59:01
## 4309            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-12 07:19:01
## 4310            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-12 10:49:01
## 4311            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-12 20:59:01
## 4312            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-13 07:49:01
## 4313            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-13 19:19:01
## 4314            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-14 07:39:01
## 4315            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-14 19:29:01
## 4316            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-14 22:49:01
## 4317            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-15 07:49:01
## 4318            DL9_corrected_KE/SHO_04KE(B).csv 2018-02-15 19:49:01
## 4319  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-21 09:27:01
## 4320  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-21 13:27:01
## 4321  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-21 19:37:01
## 4322  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-22 07:17:01
## 4323  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-22 08:47:01
## 4324  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-22 19:37:01
## 4325  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-22 20:37:01
## 4326  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-23 07:17:01
## 4327  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-23 19:37:01
## 4328  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-23 21:37:01
## 4329  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-24 18:37:01
## 4330  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-24 19:47:01
## 4331  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-25 07:37:01
## 4332  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-25 09:27:01
## 4333  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-25 18:47:01
## 4334  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-26 07:47:01
## 4335  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-26 19:07:01
## 4336  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-27 09:37:01
## 4337  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-27 13:27:01
## 4338  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-27 18:27:01
## 4339  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-27 19:57:01
## 4340  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-27 21:47:01
## 4341  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-28 08:07:01
## 4342  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-28 14:27:01
## 4343  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-28 19:37:01
## 4344  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-29 07:37:01
## 4345  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-29 20:57:01
## 4346  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-30 08:27:01
## 4347  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-30 20:17:01
## 4348  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-01-31 20:17:01
## 4349  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-02-01 07:17:01
## 4350  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-02-01 20:07:01
## 4351  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-02-02 07:17:01
## 4352  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL8.csv 2018-02-02 19:37:01
## 4353  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-21 12:53:01
## 4354  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-22 19:43:01
## 4355  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-28 13:53:01
## 4356  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-28 19:23:01
## 4357  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-29 08:13:01
## 4358  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-30 05:53:01
## 4359  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL8.csv 2018-01-30 08:33:01
## 4360  TIMESTAMP CORRECTED CC/SHO_04CC(B)_DL7.csv 2018-01-19 20:15:01
## 4361  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-07 08:05:01
## 4362  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-07 13:35:01
## 4363  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-07 19:15:01
## 4364  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-08 08:45:01
## 4365  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-08 19:45:01
## 4366  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-09 08:15:01
## 4367  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-09 18:45:01
## 4368  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-10 07:35:01
## 4369  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-10 19:55:01
## 4370  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-11 18:15:01
## 4371  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-12 07:35:01
## 4372  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-12 10:05:01
## 4373  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-12 19:05:01
## 4374  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-13 09:15:01
## 4375  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-13 16:25:01
## 4376  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-13 19:45:01
## 4377  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-14 07:45:01
## 4378  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-14 15:15:01
## 4379  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-14 19:45:01
## 4380  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-15 07:25:01
## 4381  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-15 19:45:01
## 4382  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-16 07:15:01
## 4383  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-16 20:15:01
## 4384  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-17 07:35:01
## 4385  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-17 09:45:01
## 4386  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-17 20:15:01
## 4387  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-18 08:45:01
## 4388  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-18 18:45:01
## 4389  TIMESTAMP CORRECTED KE/SHO_04KE(B)_DL7.csv 2018-01-19 07:15:01
## 4390           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-10 08:44:01
## 4391           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-10 19:54:01
## 4392           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-10 22:04:01
## 4393           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-19 09:34:01
## 4394           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-20 18:24:01
## 4395           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-21 09:24:01
## 4396           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-21 20:24:01
## 4397           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-22 08:54:01
## 4398           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-22 20:54:01
## 4399           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-23 09:44:01
## 4400           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-23 14:34:01
## 4401           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-24 13:24:01
## 4402           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-24 19:24:01
## 4403           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-25 10:04:01
## 4404           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-25 16:34:01
## 4405           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-25 19:04:01
## 4406           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-26 08:24:01
## 4407           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-26 20:04:01
## 4408           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-26 22:54:01
## 4409           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-27 09:24:01
## 4410           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-27 18:54:01
## 4411           DL6_corrected_CC/SHO_04CC_DL6.csv 2017-12-28 09:34:01
## 4412           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-24 18:40:01
## 4413           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-25 18:40:01
## 4414           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-25 21:50:01
## 4415           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-26 08:20:01
## 4416           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-26 19:20:01
## 4417           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-27 09:10:01
## 4418           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-11-27 20:40:01
## 4419           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-01 07:50:01
## 4420           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-01 21:20:01
## 4421           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-02 19:50:01
## 4422           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-03 07:50:01
## 4423           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-03 13:50:01
## 4424           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-03 20:10:01
## 4425           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-04 08:20:01
## 4426           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-04 19:40:01
## 4427           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-05 09:10:01
## 4428           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-05 19:20:01
## 4429           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-06 08:50:01
## 4430           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-06 20:20:01
## 4431           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-07 10:20:01
## 4432           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-07 20:20:01
## 4433           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-08 08:40:01
## 4434           DL5_corrected_KE/SHO_04KE_DL5.csv 2017-12-08 19:10:01
## 4435           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-19 07:38:01
## 4436           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-19 13:18:01
## 4437           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-19 18:58:01
## 4438           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-20 06:48:01
## 4439           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-20 19:48:01
## 4440           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-21 18:38:01
## 4441           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-22 08:58:01
## 4442           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-22 20:48:01
## 4443           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-23 10:38:01
## 4444           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-23 19:38:01
## 4445           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-24 08:08:01
## 4446           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-25 08:18:01
## 4447           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-26 08:38:01
## 4448           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-26 14:38:01
## 4449           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-27 07:38:01
## 4450           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-28 09:18:01
## 4451           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-28 20:18:01
## 4452           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-29 09:18:01
## 4453           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-29 19:18:01
## 4454           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-30 09:08:01
## 4455           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-11-30 18:38:01
## 4456           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-01 20:08:01
## 4457           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-01 21:38:01
## 4458           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-02 07:48:01
## 4459           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-02 08:58:01
## 4460           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-02 11:08:01
## 4461           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-02 13:48:01
## 4462           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-02 20:28:01
## 4463           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-03 07:58:01
## 4464           DL5_corrected_CC/SHO_04CC_DL5.csv 2017-12-08 18:38:01
## 4465                   LPG_DL2/SHO_04LPG_DL2.csv 2017-10-15 00:03:00
## 4466                     CC_DL2/SHO_04CC_DL2.csv 2017-10-15 12:57:00
## 4467                     CC_DL2/SHO_04CC_DL2.csv 2017-10-16 06:17:00
## 4468                     CC_DL2/SHO_04CC_DL2.csv 2017-10-16 20:57:00
## 4469                     CC_DL2/SHO_04CC_DL2.csv 2017-10-17 17:07:00
## 4470                     CC_DL2/SHO_04CC_DL2.csv 2017-10-17 18:27:00
## 4471                     CC_DL2/SHO_04CC_DL2.csv 2017-10-18 07:07:00
## 4472                     CC_DL2/SHO_04CC_DL2.csv 2017-10-18 19:47:00
## 4473                     CC_DL2/SHO_04CC_DL2.csv 2017-10-27 18:07:00
## 4474                     KE_DL2/SHO_04KE_DL2.csv 2017-10-16 20:24:00
## 4475                     KE_DL2/SHO_04KE_DL2.csv 2017-10-17 21:24:00
## 4476                     KE_DL2/SHO_04KE_DL2.csv 2017-10-18 17:34:00
## 4477                     KE_DL2/SHO_04KE_DL2.csv 2017-10-18 19:24:00
## 4478                     KE_DL2/SHO_04KE_DL2.csv 2017-10-19 06:24:00
## 4479                     KE_DL2/SHO_04KE_DL2.csv 2017-10-20 19:44:00
## 4480                     KE_DL2/SHO_04KE_DL2.csv 2017-10-21 07:04:00
## 4481                     KE_DL2/SHO_04KE_DL2.csv 2017-10-21 18:04:00
## 4482                     KE_DL2/SHO_04KE_DL2.csv 2017-10-21 19:54:00
## 4483                     KE_DL2/SHO_04KE_DL2.csv 2017-10-22 06:54:00
## 4484                     KE_DL2/SHO_04KE_DL2.csv 2017-10-22 14:54:00
## 4485                     KE_DL2/SHO_04KE_DL2.csv 2017-10-23 19:54:00
## 4486                     KE_DL2/SHO_04KE_DL2.csv 2017-10-24 12:24:00
## 4487                     KE_DL2/SHO_04KE_DL2.csv 2017-10-24 19:24:00
## 4488                     KE_DL2/SHO_04KE_DL2.csv 2017-10-24 21:44:00
## 4489                     KE_DL2/SHO_04KE_DL2.csv 2017-10-25 06:24:00
## 4490                     KE_DL2/SHO_04KE_DL2.csv 2017-10-25 17:54:00
## 4491                     KE_DL2/SHO_04KE_DL2.csv 2017-10-27 14:54:00
## 4492                     KE_DL2/SHO_04KE_DL2.csv 2017-10-27 17:24:00
## 4493                            SHO_04CC_DL1.csv 2017-10-06 20:23:00
## 4494                            SHO_04CC_DL1.csv 2017-10-07 07:53:00
## 4495                            SHO_04CC_DL1.csv 2017-10-07 15:23:00
## 4496                            SHO_04CC_DL1.csv 2017-10-07 19:23:00
## 4497                            SHO_04CC_DL1.csv 2017-10-07 20:53:00
## 4498                            SHO_04CC_DL1.csv 2017-10-08 06:43:00
## 4499                            SHO_04CC_DL1.csv 2017-10-08 16:03:00
## 4500                            SHO_04CC_DL1.csv 2017-10-13 06:13:00
## 4501                            SHO_04CC_DL1.csv 2017-10-13 19:53:00
## 4502                            SHO_04KE_DL1.csv 2017-10-06 15:30:00
## 4503                            SHO_04KE_DL1.csv 2017-10-08 06:40:00
## 4504                            SHO_04KE_DL1.csv 2017-10-08 15:50:00
## 4505                            SHO_04KE_DL1.csv 2017-10-08 20:20:00
## 4506                            SHO_04KE_DL1.csv 2017-10-09 06:20:00
## 4507                            SHO_04KE_DL1.csv 2017-10-09 17:10:00
## 4508                            SHO_04KE_DL1.csv 2017-10-09 19:00:00
## 4509                            SHO_04KE_DL1.csv 2017-10-09 20:20:00
## 4510                            SHO_04KE_DL1.csv 2017-10-10 06:20:00
## 4511                            SHO_04KE_DL1.csv 2017-10-10 19:50:00
## 4512                            SHO_04KE_DL1.csv 2017-10-11 06:20:00
## 4513                            SHO_04KE_DL1.csv 2017-10-11 17:20:00
## 4514                            SHO_04KE_DL1.csv 2017-10-12 07:00:00
## 4515                   LPG_DL1/SHO_04LPG_DL1.csv 2017-10-08 16:04:00
## 4516                   LPG_DL1/SHO_04LPG_DL1.csv 2017-10-08 18:04:00
## 4517        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-26 21:13:00
## 4518        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-27 09:13:00
## 4519        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-27 11:33:00
## 4520        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-27 21:53:00
## 4521        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-28 08:03:00
## 4522        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-28 09:23:00
## 4523        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-28 22:23:00
## 4524        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-29 08:43:00
## 4525        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-29 19:03:00
## 4526        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-30 05:23:00
## 4527        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-30 23:53:00
## 4528        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-31 07:53:00
## 4529        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2017-12-31 19:53:00
## 4530        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-01 08:53:00
## 4531        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-01 11:43:00
## 4532        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-02 11:43:00
## 4533        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-03 06:43:00
## 4534        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-03 13:53:00
## 4535        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-03 21:23:00
## 4536        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-04 09:03:00
## 4537        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-04 20:13:00
## 4538        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-05 08:03:00
## 4539        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-06 09:03:00
## 4540        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-06 10:13:00
## 4541        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-06 20:23:00
## 4542        DL6_corrected_KE/SHO_05KE(1)_DL6.csv 2018-01-07 06:53:00
## 4543        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-12 06:48:00
## 4544        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-12 18:18:00
## 4545        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-12 20:38:00
## 4546        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-13 08:18:00
## 4547        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-13 21:08:00
## 4548        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-13 23:08:00
## 4549        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-14 06:08:00
## 4550        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-14 20:48:00
## 4551        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-15 07:48:00
## 4552        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-15 21:48:00
## 4553        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-16 07:08:00
## 4554        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-16 08:28:00
## 4555        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-17 08:48:00
## 4556        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-17 19:38:00
## 4557        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-18 07:48:00
## 4558        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-18 11:18:00
## 4559        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-18 13:18:00
## 4560        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-18 21:18:00
## 4561        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-19 05:38:00
## 4562        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-19 19:18:00
## 4563        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-20 08:38:00
## 4564        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-20 14:38:00
## 4565        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-20 21:38:00
## 4566        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-21 06:48:00
## 4567        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-21 19:38:00
## 4568        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-22 07:38:00
## 4569        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-22 09:18:00
## 4570        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-22 14:58:00
## 4571        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-22 17:18:00
## 4572        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-22 21:18:00
## 4573        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-23 06:18:00
## 4574        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-23 09:28:00
## 4575        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-23 15:38:00
## 4576        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-23 20:08:00
## 4577        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-24 06:18:00
## 4578        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-24 09:28:00
## 4579        DL4_corrected_KE/SHO_05KE(1)_DL4.csv 2017-11-24 20:48:00
## 4580        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-12 06:54:00
## 4581        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-12 19:54:00
## 4582        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-13 07:54:00
## 4583        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-13 18:24:00
## 4584        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-14 06:14:00
## 4585        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-14 09:14:00
## 4586        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-14 16:54:00
## 4587        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-14 20:44:00
## 4588        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-15 08:24:00
## 4589        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-15 21:54:00
## 4590        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-16 06:54:00
## 4591        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-17 08:54:00
## 4592        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-17 19:54:00
## 4593        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-18 07:54:00
## 4594        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-18 20:54:00
## 4595        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-19 05:44:00
## 4596        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-20 08:44:00
## 4597        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-20 21:24:00
## 4598        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-21 06:54:00
## 4599        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-21 19:44:00
## 4600        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-22 07:24:00
## 4601        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-22 21:24:00
## 4602        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-23 07:14:00
## 4603        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-23 19:54:00
## 4604        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-24 07:54:00
## 4605        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-24 09:34:00
## 4606        DL4_corrected_KE/SHO_05KE(2)_DL4.csv 2017-11-24 20:54:00
## 4607                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-10-30 07:48:00
## 4608                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-10-30 16:18:00
## 4609                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-10-30 18:28:00
## 4610                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-10-31 06:48:00
## 4611                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-01 06:48:00
## 4612                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-01 13:58:00
## 4613                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-01 20:48:00
## 4614                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-02 07:48:00
## 4615                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-02 09:58:00
## 4616                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-03 09:08:00
## 4617                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-03 19:08:00
## 4618                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-04 07:18:00
## 4619                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-05 07:18:00
## 4620                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-06 07:38:00
## 4621                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-06 12:48:00
## 4622                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-06 21:48:00
## 4623                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-07 06:48:00
## 4624                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-07 08:18:00
## 4625                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-07 20:08:00
## 4626                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-08 08:18:00
## 4627                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-08 20:38:00
## 4628                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-09 02:28:00
## 4629                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-09 06:48:00
## 4630                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-09 17:28:00
## 4631                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-09 19:18:00
## 4632                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-10 07:48:00
## 4633                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-10 10:08:00
## 4634                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-10 14:48:00
## 4635                  KE_DL3/SHO_05KE(2)_DL3.csv 2017-11-10 18:48:00
## 4636                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-10-30 08:51:00
## 4637                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-10-30 21:21:00
## 4638                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-10-31 06:51:00
## 4639                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-10-31 22:41:00
## 4640                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-01 06:51:00
## 4641                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-02 06:51:00
## 4642                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-02 15:01:00
## 4643                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-03 08:21:00
## 4644                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-03 13:41:00
## 4645                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-03 19:11:00
## 4646                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-04 07:21:00
## 4647                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-04 21:11:00
## 4648                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-05 07:21:00
## 4649                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-05 12:41:00
## 4650                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-05 15:51:00
## 4651                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-05 19:51:00
## 4652                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-06 17:21:00
## 4653                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-06 21:51:00
## 4654                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-07 06:51:00
## 4655                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-07 20:11:00
## 4656                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-08 08:21:00
## 4657                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-08 20:41:00
## 4658                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-09 06:51:00
## 4659                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-09 19:21:00
## 4660                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-10 07:51:00
## 4661                  KE_DL3/SHO_05KE(1)_DL3.csv 2017-11-10 14:41:00
## 4662                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-16 16:45:00
## 4663                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-16 21:25:00
## 4664                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-17 07:35:00
## 4665                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-17 09:45:00
## 4666                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-17 11:35:00
## 4667                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-18 10:45:00
## 4668                  KE_DL2/SHO_05KE(2)_DL2.csv 2017-10-18 21:45:00
## 4669                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-16 17:01:00
## 4670                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-17 08:21:00
## 4671                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-17 22:41:00
## 4672                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-18 08:21:00
## 4673                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-18 12:51:00
## 4674                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-18 15:51:00
## 4675                  KE_DL2/SHO_05KE(1)_DL2.csv 2017-10-18 21:51:00
## 4676     TIMESTAMP CORRECTED KE/SHO_06KE_DL8.csv 2017-12-24 21:47:00
## 4677          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 00:06:00
## 4678          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 02:06:00
## 4679          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 06:16:00
## 4680          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 08:36:00
## 4681          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 10:36:00
## 4682          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 18:56:00
## 4683          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-02-12 21:36:00
## 4684          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 04:36:00
## 4685          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 09:06:00
## 4686          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 17:46:00
## 4687          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 18:36:00
## 4688          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 20:26:00
## 4689          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-03-12 21:36:00
## 4690          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 00:16:00
## 4691          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 07:16:00
## 4692          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 12:36:00
## 4693          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 17:46:00
## 4694          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 18:36:00
## 4695          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-04-12 22:36:00
## 4696          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 00:16:00
## 4697          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 05:06:00
## 4698          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 06:06:00
## 4699          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 07:16:00
## 4700          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 08:56:00
## 4701          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 10:56:00
## 4702          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 17:16:00
## 4703          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 18:06:00
## 4704          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 19:56:00
## 4705          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-05-12 23:06:00
## 4706          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 00:06:00
## 4707          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 02:16:00
## 4708          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 03:06:00
## 4709          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 04:36:00
## 4710          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 10:26:00
## 4711          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 12:06:00
## 4712          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-06-12 19:56:00
## 4713          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 02:06:00
## 4714          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 04:06:00
## 4715          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 07:36:00
## 4716          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 10:46:00
## 4717          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 11:36:00
## 4718          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 16:16:00
## 4719          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 17:06:00
## 4720          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-07-12 19:16:00
## 4721          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-08-12 09:06:00
## 4722          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-08-12 15:06:00
## 4723          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-08-12 17:36:00
## 4724          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-08-12 19:36:00
## 4725          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-09-12 04:36:00
## 4726          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-09-12 05:36:00
## 4727          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-09-12 07:46:00
## 4728          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-11-25 09:56:00
## 4729          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-11-25 20:36:00
## 4730          SHOMOLU DOWNLOAD 5_CC/SHO_06CC.csv 2017-11-25 23:36:00
## 4731          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-02-12 06:03:00
## 4732          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-02-12 15:43:00
## 4733          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-03-12 05:43:00
## 4734          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-03-12 07:53:00
## 4735          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-03-12 09:13:00
## 4736          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-03-12 13:33:00
## 4737          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-03-12 14:13:00
## 4738          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-04-12 07:03:00
## 4739          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-04-12 10:03:00
## 4740          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-04-12 11:43:00
## 4741          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-04-12 21:43:00
## 4742          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-05-12 07:33:00
## 4743          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-05-12 12:23:00
## 4744          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-05-12 15:33:00
## 4745          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-05-12 21:23:00
## 4746          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-05-12 22:33:00
## 4747          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-06-12 00:13:00
## 4748          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-06-12 11:03:00
## 4749          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-06-12 20:53:00
## 4750          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-06-12 23:33:00
## 4751          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-07-12 22:13:00
## 4752          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-08-12 17:53:00
## 4753          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-08-12 21:03:00
## 4754          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-09-12 06:13:00
## 4755          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-09-12 08:23:00
## 4756          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-11-25 10:13:00
## 4757          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-11-25 16:53:00
## 4758          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-11-25 20:33:00
## 4759          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-11-25 22:23:00
## 4760          SHOMOLU DOWNLOAD 5_KE/SHO_06KE.csv 2017-11-25 23:33:00
## 4761        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-02-12 00:39:00
## 4762        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-02-12 09:29:00
## 4763        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-02-12 18:59:00
## 4764        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-02-12 20:09:00
## 4765        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-02-12 21:39:00
## 4766        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-03-12 05:39:00
## 4767        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-03-12 19:19:00
## 4768        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-03-12 21:39:00
## 4769        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-04-12 00:19:00
## 4770        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-04-12 12:29:00
## 4771        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-04-12 13:39:00
## 4772        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-04-12 20:29:00
## 4773        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-04-12 21:29:00
## 4774        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 00:19:00
## 4775        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 04:29:00
## 4776        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 05:39:00
## 4777        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 10:59:00
## 4778        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 13:39:00
## 4779        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 16:39:00
## 4780        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-05-12 19:59:00
## 4781        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-06-12 00:19:00
## 4782        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-06-12 04:19:00
## 4783        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-06-12 11:19:00
## 4784        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-06-12 19:59:00
## 4785        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-06-12 22:19:00
## 4786        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 04:29:00
## 4787        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 07:29:00
## 4788        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 11:49:00
## 4789        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 12:59:00
## 4790        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 18:59:00
## 4791        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-07-12 19:59:00
## 4792        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-08-12 06:49:00
## 4793        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-08-12 15:29:00
## 4794        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-08-12 17:59:00
## 4795        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-08-12 19:09:00
## 4796        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-09-12 00:19:00
## 4797        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-09-12 05:39:00
## 4798        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-09-12 07:59:00
## 4799        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-11-25 09:59:00
## 4800        SHOMOLU DOWNLOAD 5_LPG/SHO_06LPG.csv 2017-11-25 20:39:00
## 4801              DL9_corrected_CC/SHO_07AMB.csv 2018-03-01 10:38:01
## 4802              DL9_corrected_CC/SHO_07AMB.csv 2018-03-01 11:28:01
## 4803              DL9_corrected_CC/SHO_07AMB.csv 2018-03-01 12:48:01
## 4804    TIMESTAMP CORRECTED CC/SHO_07AMB_DL8.csv 2018-01-08 00:04:01
## 4805          DL6_corrected_CC/SHO_07AMB_DL6.csv 2017-12-09 00:07:01
## 4806           DL6_corrected_CC/SHO_07CC_DL6.csv 2017-12-11 10:11:00
## 4807           DL6_corrected_CC/SHO_07CC_DL6.csv 2017-12-12 09:21:00
## 4808          DL5_corrected_CC/SHO_07AMB_DL5.csv 2017-11-26 00:01:01
## 4809          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-02-12 02:25:00
## 4810          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-02-12 06:25:00
## 4811          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-02-12 07:15:00
## 4812          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-02-12 12:35:00
## 4813          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-02-12 13:25:00
## 4814          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 01:15:00
## 4815          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 03:05:00
## 4816          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 04:25:00
## 4817          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 08:35:00
## 4818          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 09:25:00
## 4819          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 15:35:00
## 4820          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 16:25:00
## 4821          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-03-12 17:15:00
## 4822          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 01:25:00
## 4823          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 07:15:00
## 4824          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 09:15:00
## 4825          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 14:45:00
## 4826          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 17:25:00
## 4827          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 18:15:00
## 4828          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-04-12 23:05:00
## 4829          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 03:25:00
## 4830          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 04:15:00
## 4831          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 06:25:00
## 4832          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 07:15:00
## 4833          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 08:05:00
## 4834          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 09:05:00
## 4835          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 13:15:00
## 4836          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 18:25:00
## 4837          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 19:15:00
## 4838          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 20:35:00
## 4839          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-05-12 23:15:00
## 4840          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 04:25:00
## 4841          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 07:15:00
## 4842          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 08:15:00
## 4843          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 09:05:00
## 4844          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 13:25:00
## 4845          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 16:05:00
## 4846          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 17:25:00
## 4847          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-06-12 21:05:00
## 4848          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 04:25:00
## 4849          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 06:25:00
## 4850          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 08:35:00
## 4851          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 10:45:00
## 4852          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 12:25:00
## 4853          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 15:15:00
## 4854          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 20:05:00
## 4855          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-07-12 22:15:00
## 4856          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-08-12 05:35:00
## 4857          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-11-25 20:45:00
## 4858          SHOMOLU DOWNLOAD 5_CC/SHO_07CC.csv 2017-11-25 22:55:00
## 4859          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-02-12 03:28:00
## 4860          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-02-12 08:48:00
## 4861          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-02-12 11:18:00
## 4862          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-02-12 14:18:00
## 4863          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-02-12 21:38:00
## 4864          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-03-12 06:08:00
## 4865          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-03-12 08:18:00
## 4866          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-03-12 14:48:00
## 4867          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-03-12 21:08:00
## 4868          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-04-12 09:48:00
## 4869          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-04-12 15:48:00
## 4870          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-04-12 20:38:00
## 4871          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-05-12 08:18:00
## 4872          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-05-12 13:48:00
## 4873          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-05-12 21:58:00
## 4874          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-06-12 08:28:00
## 4875          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-06-12 13:58:00
## 4876          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-07-12 13:38:00
## 4877          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-07-12 20:08:00
## 4878          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-07-12 21:58:00
## 4879          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-07-12 22:38:00
## 4880          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-08-12 05:08:00
## 4881          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-11-25 10:18:00
## 4882          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-11-25 16:18:00
## 4883          SHOMOLU DOWNLOAD 5_KE/SHO_07KE.csv 2017-11-25 18:28:00
## 4884         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-03-12 09:31:01
## 4885         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-05-12 08:11:01
## 4886         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-05-12 11:21:01
## 4887         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-05-12 22:41:01
## 4888         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-05-12 23:21:01
## 4889         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-06-12 04:41:01
## 4890         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-06-12 13:51:01
## 4891         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 05:01:01
## 4892         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 05:41:01
## 4893         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 06:21:01
## 4894         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 07:11:01
## 4895         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 09:11:01
## 4896         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 15:51:01
## 4897         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-07-12 20:31:01
## 4898         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-08-12 06:11:01
## 4899         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-08-12 06:51:01
## 4900         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-08-12 09:11:01
## 4901         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-08-12 10:31:01
## 4902         SHOMOLU DOWNLOAD 5_CC/SHO_07AMB.csv 2017-11-25 10:21:01
## 4903          DL4_corrected_CC/SHO_07AMB_DL4.csv 2017-10-29 00:03:01
## 4904                    CC_DL2/SHO_07AMB_DL2.csv 2017-10-21 00:06:01
## 4905  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-29 00:25:00
## 4906  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-29 08:35:00
## 4907  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-29 19:45:00
## 4908  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-30 13:15:00
## 4909  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-31 13:45:00
## 4910  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-01-31 18:45:00
## 4911  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-01 04:55:00
## 4912  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-01 21:45:00
## 4913  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-03 12:35:00
## 4914  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-03 20:55:00
## 4915  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-04 08:55:00
## 4916  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-04 11:45:00
## 4917  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-04 19:55:00
## 4918  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-05 17:55:00
## 4919  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-05 23:15:00
## 4920  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-06 07:35:00
## 4921  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-06 20:45:00
## 4922  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-07 07:25:00
## 4923  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-07 09:55:00
## 4924  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-07 12:45:00
## 4925  TIMESTAMP CORRECTED KE/SHO_08KE(B)_DL8.csv 2018-02-07 20:15:00
## 4926  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-30 05:05:00
## 4927  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-30 09:55:00
## 4928  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-30 18:25:00
## 4929  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-30 19:25:00
## 4930  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-30 20:35:00
## 4931  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-31 15:35:00
## 4932  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-01-31 18:25:00
## 4933  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-01 05:25:00
## 4934  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-01 15:35:00
## 4935  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-01 19:55:00
## 4936  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-02 21:05:00
## 4937  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-04 17:05:00
## 4938  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-05 08:45:00
## 4939  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-05 10:35:00
## 4940  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-05 14:55:00
## 4941  TIMESTAMP CORRECTED CC/SHO_08CC(B)_DL8.csv 2018-02-07 19:55:00
## 4942        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-18 12:29:00
## 4943        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-19 10:09:00
## 4944        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-19 11:49:00
## 4945        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-19 13:19:00
## 4946        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-19 22:09:00
## 4947        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-20 20:19:00
## 4948        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-21 06:19:00
## 4949        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-21 14:19:00
## 4950        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-21 20:39:00
## 4951        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-22 19:09:00
## 4952        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-23 20:39:00
## 4953        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-24 10:39:00
## 4954        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-24 13:19:00
## 4955        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-24 18:09:00
## 4956        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-24 20:59:00
## 4957        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-25 06:49:00
## 4958        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-25 08:19:00
## 4959        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-25 16:19:00
## 4960        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-25 23:49:00
## 4961        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-26 22:49:00
## 4962        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-28 07:59:00
## 4963        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-28 12:59:00
## 4964        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-28 14:39:00
## 4965        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-29 09:19:00
## 4966        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-29 18:59:00
## 4967        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-29 20:29:00
## 4968        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-30 07:39:00
## 4969        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-30 14:29:00
## 4970        DL6_corrected_CC/SHO_08CC(B)_DL6.csv 2017-12-30 19:29:00
## 4971        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-20 19:46:00
## 4972        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-20 21:26:00
## 4973        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-21 16:16:00
## 4974        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-21 17:56:00
## 4975        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-23 13:46:00
## 4976        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-24 10:56:00
## 4977        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-25 07:46:00
## 4978        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-26 07:36:00
## 4979        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-27 07:16:00
## 4980        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-27 15:46:00
## 4981        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-27 19:06:00
## 4982        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-28 19:26:00
## 4983        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-29 08:16:00
## 4984        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-29 09:56:00
## 4985        DL6_corrected_KE/SHO_08KE(B)_DL6.csv 2017-12-29 20:46:00
## 4986        DL4_corrected_KE/SHO_08KE(B)_DL4.csv 2017-11-23 14:50:00
## 4987        DL4_corrected_KE/SHO_08KE(B)_DL4.csv 2017-11-23 16:00:00
## 4988        DL4_corrected_KE/SHO_08KE(B)_DL4.csv 2017-11-24 11:20:00
## 4989        DL4_corrected_KE/SHO_08KE(B)_DL4.csv 2017-11-24 19:40:00
## 4990        DL4_corrected_CC/SHO_08CC(B)_DL4.csv 2017-11-23 06:14:00
## 4991        DL4_corrected_CC/SHO_08CC(B)_DL4.csv 2017-11-23 16:14:00
## 4992        DL4_corrected_CC/SHO_08CC(B)_DL4.csv 2017-11-24 06:44:00
## 4993        DL4_corrected_CC/SHO_08CC(B)_DL4.csv 2017-11-24 19:34:00
## 4994                    CC_DL2/SHO_08AMB_DL2.csv 2017-10-21 00:05:01
## 4995                     KE_DL2/SHO_08KE_DL2.csv 2017-10-22 06:47:00
## 4996                     KE_DL2/SHO_08KE_DL2.csv 2017-10-22 22:07:00
## 4997                     KE_DL2/SHO_08KE_DL2.csv 2017-10-23 11:27:00
## 4998                     KE_DL2/SHO_08KE_DL2.csv 2017-10-23 21:17:00
## 4999                     KE_DL2/SHO_08KE_DL2.csv 2017-10-24 09:07:00
## 5000                     KE_DL2/SHO_08KE_DL2.csv 2017-10-24 10:57:00
## 5001                     KE_DL2/SHO_08KE_DL2.csv 2017-10-24 13:27:00
## 5002                     KE_DL2/SHO_08KE_DL2.csv 2017-10-24 14:27:00
## 5003                     KE_DL2/SHO_08KE_DL2.csv 2017-10-24 21:17:00
## 5004                     KE_DL2/SHO_08KE_DL2.csv 2017-10-25 08:37:00
## 5005                     KE_DL2/SHO_08KE_DL2.csv 2017-10-25 13:07:00
## 5006                     KE_DL2/SHO_08KE_DL2.csv 2017-10-25 18:47:00
## 5007                     KE_DL2/SHO_08KE_DL2.csv 2017-10-25 22:27:00
## 5008                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 08:27:00
## 5009                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 09:37:00
## 5010                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 13:07:00
## 5011                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 18:27:00
## 5012                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 21:27:00
## 5013                     KE_DL2/SHO_08KE_DL2.csv 2017-10-26 22:57:00
## 5014                     KE_DL2/SHO_08KE_DL2.csv 2017-10-27 09:27:00
## 5015                     KE_DL2/SHO_08KE_DL2.csv 2017-10-27 11:57:00
## 5016                     KE_DL2/SHO_08KE_DL2.csv 2017-10-27 15:27:00
## 5017                     KE_DL2/SHO_08KE_DL2.csv 2017-10-27 21:07:00
## 5018                     KE_DL2/SHO_08KE_DL2.csv 2017-10-27 22:47:00
## 5019                     CC_DL2/SHO_08CC_DL2.csv 2017-10-23 08:24:00
## 5020                     CC_DL2/SHO_08CC_DL2.csv 2017-10-24 10:54:00
## 5021                     CC_DL2/SHO_08CC_DL2.csv 2017-10-24 13:04:00
## 5022                     CC_DL2/SHO_08CC_DL2.csv 2017-10-24 15:24:00
## 5023                            SHO_08CC_DL1.csv 2017-10-07 12:36:00
## 5024                            SHO_08CC_DL1.csv 2017-10-08 15:16:00
## 5025                            SHO_08CC_DL1.csv 2017-10-10 11:46:00
## 5026                            SHO_08CC_DL1.csv 2017-10-13 13:26:00
## 5027                            SHO_08CC_DL1.csv 2017-10-18 16:06:00
## 5028          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 03:09:00
## 5029          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 04:49:00
## 5030          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 05:59:00
## 5031          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 10:09:00
## 5032          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 11:39:00
## 5033          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 13:19:00
## 5034          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 14:09:00
## 5035          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 15:19:00
## 5036          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 17:49:00
## 5037          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 20:09:00
## 5038          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 21:59:00
## 5039          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-02-12 23:39:00
## 5040          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 01:29:00
## 5041          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 05:39:00
## 5042          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 07:49:00
## 5043          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 11:09:00
## 5044          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 12:09:00
## 5045          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 12:49:00
## 5046          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 13:39:00
## 5047          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 15:09:00
## 5048          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 17:19:00
## 5049          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 19:09:00
## 5050          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 21:19:00
## 5051          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 22:39:00
## 5052          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-03-12 23:19:00
## 5053          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 00:49:00
## 5054          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 02:19:00
## 5055          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 04:39:00
## 5056          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 05:49:00
## 5057          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 07:19:00
## 5058          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 08:49:00
## 5059          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 11:19:00
## 5060          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 13:49:00
## 5061          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 15:39:00
## 5062          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 17:39:00
## 5063          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 19:49:00
## 5064          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-04-12 21:19:00
## 5065          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 00:39:00
## 5066          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 02:09:00
## 5067          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 03:49:00
## 5068          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 05:49:00
## 5069          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 07:29:00
## 5070          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 10:49:00
## 5071          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 13:59:00
## 5072          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 15:09:00
## 5073          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 15:49:00
## 5074          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 17:49:00
## 5075          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-05-12 20:09:00
## 5076          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 02:39:00
## 5077          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 04:29:00
## 5078          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 05:49:00
## 5079          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 07:19:00
## 5080          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 08:09:00
## 5081          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 10:59:00
## 5082          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 12:29:00
## 5083          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 13:19:00
## 5084          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 17:09:00
## 5085          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-06-12 18:09:00
## 5086          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 00:39:00
## 5087          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 05:49:00
## 5088          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 06:49:00
## 5089          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 10:19:00
## 5090          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 12:19:00
## 5091          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 16:09:00
## 5092          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 17:19:00
## 5093          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 19:19:00
## 5094          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-07-12 21:09:00
## 5095          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 01:29:00
## 5096          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 05:39:00
## 5097          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 07:19:00
## 5098          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 09:49:00
## 5099          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 12:09:00
## 5100          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 16:49:00
## 5101          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 18:09:00
## 5102          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-08-12 20:39:00
## 5103          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-09-12 06:39:00
## 5104          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-09-12 08:09:00
## 5105          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 10:39:00
## 5106          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 12:09:00
## 5107          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 12:49:00
## 5108          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 13:39:00
## 5109          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 14:49:00
## 5110          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 16:09:00
## 5111          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 17:39:00
## 5112          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 19:19:00
## 5113          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 20:39:00
## 5114          SHOMOLU DOWNLOAD 5_KE/SHO_09KE.csv 2017-11-25 23:29:00
## 5115          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 00:16:00
## 5116          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 03:16:00
## 5117          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 06:46:00
## 5118          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 09:26:00
## 5119          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 10:36:00
## 5120          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 11:56:00
## 5121          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 20:26:00
## 5122          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 21:46:00
## 5123          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-02-12 22:36:00
## 5124          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 00:16:00
## 5125          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 01:46:00
## 5126          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 03:06:00
## 5127          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 03:56:00
## 5128          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 11:56:00
## 5129          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 13:56:00
## 5130          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 17:16:00
## 5131          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 18:16:00
## 5132          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-03-12 21:46:00
## 5133          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-04-12 13:46:00
## 5134          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-04-12 15:06:00
## 5135          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-04-12 16:46:00
## 5136          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-04-12 22:26:00
## 5137          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 00:16:00
## 5138          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 05:16:00
## 5139          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 07:46:00
## 5140          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 09:06:00
## 5141          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 12:36:00
## 5142          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-05-12 15:26:00
## 5143          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 01:16:00
## 5144          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 06:46:00
## 5145          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 10:36:00
## 5146          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 13:26:00
## 5147          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 16:26:00
## 5148          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-06-12 18:56:00
## 5149          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-07-12 01:16:00
## 5150          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-07-12 13:46:00
## 5151          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-07-12 14:46:00
## 5152          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-07-12 21:56:00
## 5153          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-07-12 23:26:00
## 5154          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-08-12 15:36:00
## 5155          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-08-12 16:46:00
## 5156          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-08-12 18:56:00
## 5157          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-09-12 01:16:00
## 5158          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-09-12 06:16:00
## 5159          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-09-12 07:06:00
## 5160          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-09-12 08:06:00
## 5161          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-11-25 10:36:00
## 5162          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-11-25 17:26:00
## 5163          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-11-25 19:56:00
## 5164          SHOMOLU DOWNLOAD 5_CC/SHO_09CC.csv 2017-11-25 21:46:00
## 5165           DL4_corrected_CC/SHO_09CC_DL4.csv 2017-11-12 08:46:00
## 5166           DL4_corrected_CC/SHO_09CC_DL4.csv 2017-11-12 11:26:00
## 5167  TIMESTAMP CORRECTED CC/SHO_10CC(B)_DL8.csv 2018-01-31 14:01:01
## 5168  TIMESTAMP CORRECTED CC/SHO_10CC(B)_DL8.csv 2018-01-31 21:11:01
## 5169  TIMESTAMP CORRECTED CC/SHO_10CC(B)_DL8.csv 2018-02-01 20:21:01
## 5170  TIMESTAMP CORRECTED CC/SHO_10CC(B)_DL8.csv 2018-02-02 07:31:01
## 5171  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-07 09:48:01
## 5172  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-07 21:58:01
## 5173  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-08 08:28:01
## 5174  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-08 12:18:01
## 5175  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-08 15:58:01
## 5176  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-08 20:48:01
## 5177  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-09 07:18:01
## 5178  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-09 20:18:01
## 5179  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-10 05:48:01
## 5180  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-10 18:18:01
## 5181  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-11 13:38:01
## 5182  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-11 21:18:01
## 5183  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-12 19:18:01
## 5184  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-14 13:18:01
## 5185  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-14 18:38:01
## 5186  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-14 20:18:01
## 5187  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-15 17:48:01
## 5188  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-16 13:28:01
## 5189  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-16 19:28:01
## 5190  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-17 18:48:01
## 5191  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-17 21:18:01
## 5192  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-18 20:18:01
## 5193  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-19 19:38:01
## 5194  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-20 20:18:01
## 5195  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-20 21:18:01
## 5196  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-21 09:38:01
## 5197  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-21 13:38:01
## 5198  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-21 20:18:01
## 5199  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-22 12:48:01
## 5200  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-22 19:38:01
## 5201  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-23 19:58:01
## 5202  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-24 18:18:01
## 5203  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-25 20:58:01
## 5204  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-26 20:48:01
## 5205  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-27 09:18:01
## 5206  TIMESTAMP CORRECTED KE/SHO_10KE(B)_DL8.csv 2018-01-27 20:28:01
## 5207        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-13 09:38:01
## 5208        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-13 15:48:01
## 5209        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-14 08:48:01
## 5210        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-16 13:48:01
## 5211        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-22 09:38:01
## 5212        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-22 14:58:01
## 5213        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-22 17:48:01
## 5214        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-31 08:18:01
## 5215        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-31 14:18:01
## 5216        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2017-12-31 20:48:01
## 5217        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-01 07:48:01
## 5218        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-01 09:48:01
## 5219        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-01 13:18:01
## 5220        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-01 20:18:01
## 5221        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-02 07:48:01
## 5222        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-02 11:48:01
## 5223        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-02 14:58:01
## 5224        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-03 20:18:01
## 5225        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-04 08:28:01
## 5226        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-04 15:08:01
## 5227        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-04 17:48:01
## 5228        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-04 20:08:01
## 5229        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-05 06:18:01
## 5230        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-05 08:48:01
## 5231        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-05 12:28:01
## 5232        DL6_corrected_KE/SHO_10KE(B)_DL6.csv 2018-01-05 20:48:01
## 5233        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-15 15:46:01
## 5234        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-17 09:56:01
## 5235        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-17 15:16:01
## 5236        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-20 20:46:01
## 5237        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-21 19:16:01
## 5238        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-25 09:46:01
## 5239        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-25 15:16:01
## 5240        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-26 12:16:01
## 5241        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-26 19:26:01
## 5242        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-27 09:36:01
## 5243        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2017-12-27 12:46:01
## 5244        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2018-01-01 12:16:01
## 5245        DL6_corrected_CC/SHO_10CC(B)_DL6.csv 2018-01-01 20:36:01
## 5246           DL5_corrected_CC/SHO_10CC_DL5.csv 2017-11-24 14:58:00
## 5247           DL5_corrected_CC/SHO_10CC_DL5.csv 2017-11-25 09:48:00
## 5248           DL5_corrected_CC/SHO_10CC_DL5.csv 2017-11-25 13:08:00
## 5249          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-02-12 00:28:00
## 5250          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-02-12 15:18:00
## 5251          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-02-12 21:28:00
## 5252          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 01:28:00
## 5253          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 03:08:00
## 5254          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 08:08:00
## 5255          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 10:18:00
## 5256          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 14:48:00
## 5257          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 18:08:00
## 5258          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 19:28:00
## 5259          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 20:18:00
## 5260          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-03-12 22:18:00
## 5261          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 00:28:00
## 5262          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 05:08:00
## 5263          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 11:18:00
## 5264          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 13:18:00
## 5265          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 14:48:00
## 5266          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 21:08:00
## 5267          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-04-12 22:28:00
## 5268          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-05-12 04:38:00
## 5269          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-05-12 09:18:00
## 5270          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-05-12 14:48:00
## 5271          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-05-12 21:08:00
## 5272          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-05-12 23:08:00
## 5273          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-06-12 04:58:00
## 5274          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-06-12 09:18:00
## 5275          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-06-12 10:58:00
## 5276          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 07:48:00
## 5277          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 09:48:00
## 5278          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 11:18:00
## 5279          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 12:18:00
## 5280          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 13:48:00
## 5281          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 16:28:00
## 5282          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 17:38:00
## 5283          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 18:38:00
## 5284          SHOMOLU DOWNLOAD 5_CC/SHO_10CC.csv 2017-11-22 23:18:00
## 5285                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-21 09:13:00
## 5286                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-21 20:13:00
## 5287                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-22 08:43:00
## 5288                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-22 14:43:00
## 5289                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-22 20:43:00
## 5290                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-23 05:13:00
## 5291                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-23 09:43:00
## 5292                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-23 14:23:00
## 5293                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-23 17:03:00
## 5294                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-23 17:53:00
## 5295                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 07:13:00
## 5296                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 11:53:00
## 5297                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 13:13:00
## 5298                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 14:53:00
## 5299                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 17:33:00
## 5300                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-24 18:23:00
## 5301                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-25 07:33:00
## 5302                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-25 16:23:00
## 5303                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-26 07:33:00
## 5304                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-26 11:33:00
## 5305                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-26 20:03:00
## 5306                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-27 11:13:00
## 5307                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-27 13:43:00
## 5308                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-27 16:33:00
## 5309                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-27 19:43:00
## 5310                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-28 09:53:00
## 5311                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-28 13:13:00
## 5312                   LPG_DL2/SHO_10LPG_DL2.csv 2017-10-28 20:13:00
## 5313                     CC_DL2/SHO_10CC_DL2.csv 2017-10-21 09:19:00
## 5314                     CC_DL2/SHO_10CC_DL2.csv 2017-10-21 10:49:00
## 5315                     CC_DL2/SHO_10CC_DL2.csv 2017-10-21 11:59:00
## 5316                     CC_DL2/SHO_10CC_DL2.csv 2017-10-21 12:39:00
## 5317                     CC_DL2/SHO_10CC_DL2.csv 2017-10-21 14:19:00
## 5318                     CC_DL2/SHO_10CC_DL2.csv 2017-10-25 09:39:00
## 5319                     CC_DL2/SHO_10CC_DL2.csv 2017-10-26 16:39:00
## 5320                     CC_DL2/SHO_10CC_DL2.csv 2017-10-26 20:09:00
## 5321                     CC_DL2/SHO_10CC_DL2.csv 2017-10-26 20:59:00
## 5322                     CC_DL2/SHO_10CC_DL2.csv 2017-10-27 09:19:00
## 5323                     CC_DL2/SHO_10CC_DL2.csv 2017-10-27 10:09:00
## 5324                     CC_DL2/SHO_10CC_DL2.csv 2017-10-27 13:59:00
## 5325                     CC_DL2/SHO_10CC_DL2.csv 2017-10-27 20:19:00
## 5326                     CC_DL2/SHO_10CC_DL2.csv 2017-10-28 09:59:00
## 5327                     CC_DL2/SHO_10CC_DL2.csv 2017-10-28 20:39:00
## 5328                            SHO_10CC_DL1.csv 2017-10-06 07:25:00
## 5329                            SHO_10CC_DL1.csv 2017-10-06 15:35:00
## 5330                            SHO_10CC_DL1.csv 2017-10-06 19:45:00
## 5331                            SHO_10CC_DL1.csv 2017-10-07 08:55:00
## 5332                            SHO_10CC_DL1.csv 2017-10-07 10:45:00
## 5333                            SHO_10CC_DL1.csv 2017-10-07 16:05:00
## 5334                            SHO_10CC_DL1.csv 2017-10-07 18:15:00
## 5335                            SHO_10CC_DL1.csv 2017-10-08 09:35:00
## 5336                            SHO_10CC_DL1.csv 2017-10-08 14:35:00
## 5337                            SHO_10CC_DL1.csv 2017-10-08 16:25:00
## 5338                            SHO_10CC_DL1.csv 2017-10-08 21:15:00
## 5339                            SHO_10CC_DL1.csv 2017-10-10 09:45:00
## 5340                            SHO_10CC_DL1.csv 2017-10-10 15:05:00
## 5341                            SHO_10CC_DL1.csv 2017-10-11 06:45:00
## 5342                            SHO_10CC_DL1.csv 2017-10-11 11:45:00
## 5343                            SHO_10CC_DL1.csv 2017-10-11 16:35:00
## 5344                            SHO_10CC_DL1.csv 2017-10-12 17:45:00
## 5345                            SHO_10CC_DL1.csv 2017-10-12 19:05:00
## 5346                            SHO_10CC_DL1.csv 2017-10-13 17:25:00
##                           qc    HHID logging_duration_days
## 1                    ambient  AKO_01          1.499306e+01
## 2    excluded_household_list  AKO_01          6.972222e+00
## 3    excluded_household_list  AKO_01          6.972222e+00
## 4    excluded_household_list  AKO_01          6.972222e+00
## 5    excluded_household_list  AKO_01          6.972222e+00
## 6    excluded_household_list  AKO_01          6.972222e+00
## 7    excluded_household_list  AKO_01          6.972222e+00
## 8    excluded_household_list  AKO_01          6.972222e+00
## 9    excluded_household_list  AKO_01          6.972222e+00
## 10   excluded_household_list  AKO_01          6.972222e+00
## 11   excluded_household_list  AKO_01          6.972222e+00
## 12   excluded_household_list  AKO_01          7.027778e+00
## 13   excluded_household_list  AKO_01          7.027778e+00
## 14   excluded_household_list  AKO_01          7.027778e+00
## 15   excluded_household_list  AKO_01          7.027778e+00
## 16   excluded_household_list  AKO_01          7.027778e+00
## 17   excluded_household_list  AKO_01          7.027778e+00
## 18   excluded_household_list  AKO_01          7.027778e+00
## 19   excluded_household_list  AKO_01          7.027778e+00
## 20                   ambient  AKO_01          1.299306e+01
## 21   excluded_household_list  AKO_01          1.299306e+01
## 22   excluded_household_list  AKO_01          1.262500e+01
## 23   excluded_household_list  AKO_01          1.262500e+01
## 24   excluded_household_list  AKO_01          1.262500e+01
## 25   excluded_household_list  AKO_01          1.262500e+01
## 26   excluded_household_list  AKO_01          1.262500e+01
## 27   excluded_household_list  AKO_01          1.262500e+01
## 28   excluded_household_list  AKO_01          1.262500e+01
## 29   excluded_household_list  AKO_01          1.262500e+01
## 30   excluded_household_list  AKO_01          1.262500e+01
## 31   excluded_household_list  AKO_01          1.262500e+01
## 32   excluded_household_list  AKO_01          1.262500e+01
## 33   excluded_household_list  AKO_01          1.262500e+01
## 34   excluded_household_list  AKO_01          1.262500e+01
## 35   excluded_household_list  AKO_01          1.262500e+01
## 36   excluded_household_list  AKO_01          1.262500e+01
## 37                   ambient  AKO_01          2.699306e+01
## 38   excluded_household_list  AKO_01          2.660417e+01
## 39   excluded_household_list  AKO_01          2.660417e+01
## 40   excluded_household_list  AKO_01          2.660417e+01
## 41   excluded_household_list  AKO_01          2.660417e+01
## 42   excluded_household_list  AKO_01          2.660417e+01
## 43   excluded_household_list  AKO_01          2.660417e+01
## 44   excluded_household_list  AKO_01          2.660417e+01
## 45   excluded_household_list  AKO_01          2.660417e+01
## 46   excluded_household_list  AKO_01          2.660417e+01
## 47   excluded_household_list  AKO_01          2.660417e+01
## 48   excluded_household_list  AKO_01          2.660417e+01
## 49   excluded_household_list  AKO_01          2.660417e+01
## 50   excluded_household_list  AKO_01          2.660417e+01
## 51   excluded_household_list  AKO_01          2.660417e+01
## 52   excluded_household_list  AKO_01          2.660417e+01
## 53   excluded_household_list  AKO_01          2.660417e+01
## 54   excluded_household_list  AKO_01          2.660417e+01
## 55   excluded_household_list  AKO_01          2.660417e+01
## 56   excluded_household_list  AKO_01          2.660417e+01
## 57   excluded_household_list  AKO_01          2.660417e+01
## 58   excluded_household_list  AKO_01          2.660417e+01
## 59   excluded_household_list  AKO_01          2.660417e+01
## 60   excluded_household_list  AKO_01          2.660417e+01
## 61   excluded_household_list  AKO_01          2.660417e+01
## 62   excluded_household_list  AKO_01          2.660417e+01
## 63   excluded_household_list  AKO_01          2.660417e+01
## 64   excluded_household_list  AKO_01          2.660417e+01
## 65   excluded_household_list  AKO_01          2.660417e+01
## 66   excluded_household_list  AKO_01          2.660417e+01
## 67   excluded_household_list  AKO_01          2.660417e+01
## 68   excluded_household_list  AKO_01          2.660417e+01
## 69   excluded_household_list  AKO_01          2.660417e+01
## 70   excluded_household_list  AKO_01          2.660417e+01
## 71   excluded_household_list  AKO_01          2.660417e+01
## 72   excluded_household_list  AKO_01          2.660417e+01
## 73   excluded_household_list  AKO_01          2.660417e+01
## 74   excluded_household_list  AKO_01          2.660417e+01
## 75   excluded_household_list  AKO_01          2.660417e+01
## 76   excluded_household_list  AKO_01          2.660417e+01
## 77   excluded_household_list  AKO_01          2.660417e+01
## 78   excluded_household_list  AKO_01          2.660417e+01
## 79   excluded_household_list  AKO_01          2.660417e+01
## 80   excluded_household_list  AKO_01          2.660417e+01
## 81   excluded_household_list  AKO_01          2.660417e+01
## 82   excluded_household_list  AKO_01          2.660417e+01
## 83   excluded_household_list  AKO_01          2.660417e+01
## 84   excluded_household_list  AKO_01          2.660417e+01
## 85   excluded_household_list  AKO_01          2.660417e+01
## 86   excluded_household_list  AKO_01          2.660417e+01
## 87   excluded_household_list  AKO_01          2.660417e+01
## 88       short_file_duration  AKO_01          9.166667e-01
## 89       short_file_duration  AKO_01          9.166667e-01
## 90       short_file_duration  AKO_01          9.166667e-01
## 91       short_file_duration  AKO_01          9.166667e-01
## 92       short_file_duration  AKO_01          9.166667e-01
## 93   excluded_household_list  AKO_01          8.993056e+00
## 94                   ambient  AKO_01          8.993056e+00
## 95   excluded_household_list  AKO_01          8.687500e+00
## 96   excluded_household_list  AKO_01          8.687500e+00
## 97   excluded_household_list  AKO_01          8.687500e+00
## 98   excluded_household_list  AKO_01          8.687500e+00
## 99   excluded_household_list  AKO_01          8.687500e+00
## 100  excluded_household_list  AKO_01          8.687500e+00
## 101  excluded_household_list  AKO_01          8.687500e+00
## 102  excluded_household_list  AKO_01          8.687500e+00
## 103  excluded_household_list  AKO_01          8.687500e+00
## 104  excluded_household_list  AKO_01          8.687500e+00
## 105  excluded_household_list  AKO_01          8.687500e+00
## 106  excluded_household_list  AKO_01          8.687500e+00
## 107  excluded_household_list  AKO_01          8.687500e+00
## 108  excluded_household_list  AKO_01          8.687500e+00
## 109  excluded_household_list  AKO_01          8.687500e+00
## 110  excluded_household_list  AKO_01          8.687500e+00
## 111  excluded_household_list  AKO_01          8.687500e+00
## 112  excluded_household_list  AKO_01          8.687500e+00
## 113  excluded_household_list  AKO_01          8.687500e+00
## 114  excluded_household_list  AKO_01          2.908194e+02
## 115  excluded_household_list  AKO_01          2.908194e+02
## 116  excluded_household_list  AKO_01          2.908194e+02
## 117  excluded_household_list  AKO_01          2.908194e+02
## 118  excluded_household_list  AKO_01          2.908194e+02
## 119  excluded_household_list  AKO_01          2.908194e+02
## 120  excluded_household_list  AKO_01          2.908194e+02
## 121  excluded_household_list  AKO_01          2.908194e+02
## 122  excluded_household_list  AKO_01          2.908194e+02
## 123  excluded_household_list  AKO_01          2.908194e+02
## 124  excluded_household_list  AKO_01          2.908194e+02
## 125  excluded_household_list  AKO_01          2.908194e+02
## 126  excluded_household_list  AKO_01          2.908194e+02
## 127  excluded_household_list  AKO_01          2.908194e+02
## 128  excluded_household_list  AKO_01          2.908194e+02
## 129  excluded_household_list  AKO_01          2.908194e+02
## 130  excluded_household_list  AKO_01          2.908194e+02
## 131  excluded_household_list  AKO_01          2.908194e+02
## 132  excluded_household_list  AKO_01          2.908194e+02
## 133  excluded_household_list  AKO_01          2.908194e+02
## 134  excluded_household_list  AKO_01          2.908194e+02
## 135  excluded_household_list  AKO_01          2.908194e+02
## 136  excluded_household_list  AKO_01          2.908194e+02
## 137  excluded_household_list  AKO_01          2.908194e+02
## 138  excluded_household_list  AKO_01          2.908194e+02
## 139  excluded_household_list  AKO_01          2.908194e+02
## 140  excluded_household_list  AKO_01          2.908194e+02
## 141  excluded_household_list  AKO_01          2.908194e+02
## 142  excluded_household_list  AKO_01          2.908194e+02
## 143  excluded_household_list  AKO_01          2.908194e+02
## 144  excluded_household_list  AKO_01          2.908194e+02
## 145  excluded_household_list  AKO_01          2.908194e+02
## 146  excluded_household_list  AKO_01          2.908194e+02
## 147  excluded_household_list  AKO_01          2.908194e+02
## 148  excluded_household_list  AKO_01          2.908194e+02
## 149  excluded_household_list  AKO_01          2.908194e+02
## 150  excluded_household_list  AKO_01          2.908194e+02
## 151  excluded_household_list  AKO_01          2.908194e+02
## 152  excluded_household_list  AKO_01          2.908194e+02
## 153  excluded_household_list  AKO_01          2.908194e+02
## 154  excluded_household_list  AKO_01          2.908194e+02
## 155  excluded_household_list  AKO_01          2.908194e+02
## 156  excluded_household_list  AKO_01          2.908194e+02
## 157  excluded_household_list  AKO_01          2.908194e+02
## 158  excluded_household_list  AKO_01          2.908194e+02
## 159  excluded_household_list  AKO_01          2.908194e+02
## 160  excluded_household_list  AKO_01          2.908194e+02
## 161  excluded_household_list  AKO_01          2.908194e+02
## 162  excluded_household_list  AKO_01          2.908194e+02
## 163  excluded_household_list  AKO_01          2.908194e+02
## 164  excluded_household_list  AKO_01          2.908194e+02
## 165  excluded_household_list  AKO_01          2.908194e+02
## 166  excluded_household_list  AKO_01          2.908194e+02
## 167  excluded_household_list  AKO_01          2.908194e+02
## 168  excluded_household_list  AKO_01          2.908194e+02
## 169  excluded_household_list  AKO_01          2.908194e+02
## 170  excluded_household_list  AKO_01          2.908194e+02
## 171  excluded_household_list  AKO_01          2.908194e+02
## 172  excluded_household_list  AKO_01          2.908194e+02
## 173  excluded_household_list  AKO_01          2.908194e+02
## 174  excluded_household_list  AKO_01          2.908194e+02
## 175  excluded_household_list  AKO_01          2.908194e+02
## 176  excluded_household_list  AKO_01          2.908194e+02
## 177  excluded_household_list  AKO_01          2.908194e+02
## 178  excluded_household_list  AKO_01          2.908194e+02
## 179  excluded_household_list  AKO_01          2.908194e+02
## 180  excluded_household_list  AKO_01          2.908194e+02
## 181  excluded_household_list  AKO_01          2.908194e+02
## 182  excluded_household_list  AKO_01          2.908194e+02
## 183  excluded_household_list  AKO_01          2.908194e+02
## 184  excluded_household_list  AKO_01          2.908194e+02
## 185  excluded_household_list  AKO_01          2.908194e+02
## 186  excluded_household_list  AKO_01          2.908194e+02
## 187  excluded_household_list  AKO_01          2.908194e+02
## 188  excluded_household_list  AKO_01          2.908194e+02
## 189  excluded_household_list  AKO_01          2.908194e+02
## 190  excluded_household_list  AKO_01          2.908194e+02
## 191  excluded_household_list  AKO_01          2.908194e+02
## 192                  ambient  AKO_01          2.905069e+02
## 193                  ambient  AKO_01          2.905069e+02
## 194                  ambient  AKO_01          2.905069e+02
## 195                  ambient  AKO_01          2.905069e+02
## 196                  ambient  AKO_01          2.905069e+02
## 197                  ambient  AKO_01          2.905069e+02
## 198                  ambient  AKO_01          2.905069e+02
## 199                  ambient  AKO_01          2.905069e+02
## 200                  ambient  AKO_01          2.905069e+02
## 201                  ambient  AKO_01          2.905069e+02
## 202                  ambient  AKO_01          2.905069e+02
## 203                  ambient  AKO_01          2.905069e+02
## 204                  ambient  AKO_01          2.905069e+02
## 205                  ambient  AKO_01          2.905069e+02
## 206                  ambient  AKO_01          2.905069e+02
## 207                  ambient  AKO_01          2.905069e+02
## 208                  ambient  AKO_01          2.905069e+02
## 209                  ambient  AKO_01          2.905069e+02
## 210                  ambient  AKO_01          2.905069e+02
## 211                  ambient  AKO_01          2.905069e+02
## 212                  ambient  AKO_01          2.905069e+02
## 213                  ambient  AKO_01          2.905069e+02
## 214                  ambient  AKO_01          2.905069e+02
## 215                  ambient  AKO_01          2.905069e+02
## 216                  ambient  AKO_01          2.905069e+02
## 217                  ambient  AKO_01          2.905069e+02
## 218                  ambient  AKO_01          2.905069e+02
## 219                  ambient  AKO_01          2.905069e+02
## 220                  ambient  AKO_01          2.905069e+02
## 221                  ambient  AKO_01          2.905069e+02
## 222                  ambient  AKO_01          2.905069e+02
## 223                  ambient  AKO_01          2.905069e+02
## 224                  ambient  AKO_01          2.905069e+02
## 225                  ambient  AKO_01          2.905069e+02
## 226                  ambient  AKO_01          2.905069e+02
## 227                  ambient  AKO_01          2.905069e+02
## 228                  ambient  AKO_01          2.905069e+02
## 229                  ambient  AKO_01          2.905069e+02
## 230                  ambient  AKO_01          2.905069e+02
## 231                  ambient  AKO_01          2.905069e+02
## 232                  ambient  AKO_01          2.905069e+02
## 233                  ambient  AKO_01          2.905069e+02
## 234                  ambient  AKO_01          2.905069e+02
## 235                  ambient  AKO_01          2.905069e+02
## 236                  ambient  AKO_01          2.905069e+02
## 237                  ambient  AKO_01          2.905069e+02
## 238                  ambient  AKO_01          2.905069e+02
## 239                  ambient  AKO_01          2.905069e+02
## 240                  ambient  AKO_01          2.905069e+02
## 241                  ambient  AKO_01          2.905069e+02
## 242                  ambient  AKO_01          2.905069e+02
## 243                  ambient  AKO_01          2.905069e+02
## 244                  ambient  AKO_01          2.905069e+02
## 245                  ambient  AKO_01          2.905069e+02
## 246                  ambient  AKO_01          2.905069e+02
## 247                  ambient  AKO_01          2.905069e+02
## 248                  ambient  AKO_01          2.905069e+02
## 249                  ambient  AKO_01          2.905069e+02
## 250                  ambient  AKO_01          2.905069e+02
## 251                  ambient  AKO_01          2.905069e+02
## 252                  ambient  AKO_01          2.905069e+02
## 253                  ambient  AKO_01          2.905069e+02
## 254                  ambient  AKO_01          2.905069e+02
## 255                  ambient  AKO_01          2.905069e+02
## 256                  ambient  AKO_01          2.905069e+02
## 257                  ambient  AKO_01          2.905069e+02
## 258                  ambient  AKO_01          2.905069e+02
## 259                  ambient  AKO_01          2.905069e+02
## 260                  ambient  AKO_01          2.905069e+02
## 261                  ambient  AKO_01          2.905069e+02
## 262                  ambient  AKO_01          2.905069e+02
## 263                  ambient  AKO_01          2.905069e+02
## 264                  ambient  AKO_01          2.905069e+02
## 265                  ambient  AKO_01          2.905069e+02
## 266                  ambient  AKO_01          2.905069e+02
## 267                  ambient  AKO_01          2.905069e+02
## 268                  ambient  AKO_01          2.905069e+02
## 269                  ambient  AKO_01          2.905069e+02
## 270                  ambient  AKO_01          2.905069e+02
## 271                  ambient  AKO_01          2.905069e+02
## 272                  ambient  AKO_01          2.905069e+02
## 273                  ambient  AKO_01          2.905069e+02
## 274                  ambient  AKO_01          2.905069e+02
## 275                  ambient  AKO_01          2.905069e+02
## 276                  ambient  AKO_01          2.905069e+02
## 277                  ambient  AKO_01          2.905069e+02
## 278                  ambient  AKO_01          2.905069e+02
## 279                  ambient  AKO_01          2.905069e+02
## 280                  ambient  AKO_01          2.905069e+02
## 281                  ambient  AKO_01          2.905069e+02
## 282                  ambient  AKO_01          2.905069e+02
## 283                  ambient  AKO_01          2.905069e+02
## 284                  ambient  AKO_01          2.905069e+02
## 285                  ambient  AKO_01          2.905069e+02
## 286  excluded_household_list  AKO_01          2.906181e+02
## 287  excluded_household_list  AKO_01          2.906181e+02
## 288  excluded_household_list  AKO_01          2.906181e+02
## 289  excluded_household_list  AKO_01          2.906181e+02
## 290  excluded_household_list  AKO_01          2.906181e+02
## 291  excluded_household_list  AKO_01          2.906181e+02
## 292  excluded_household_list  AKO_01          2.906181e+02
## 293  excluded_household_list  AKO_01          2.906181e+02
## 294  excluded_household_list  AKO_01          2.906181e+02
## 295  excluded_household_list  AKO_01          2.906181e+02
## 296  excluded_household_list  AKO_01          2.906181e+02
## 297  excluded_household_list  AKO_01          2.906181e+02
## 298  excluded_household_list  AKO_01          2.906181e+02
## 299  excluded_household_list  AKO_01          2.906181e+02
## 300  excluded_household_list  AKO_01          2.906181e+02
## 301  excluded_household_list  AKO_01          2.906181e+02
## 302  excluded_household_list  AKO_01          2.906181e+02
## 303  excluded_household_list  AKO_01          2.906181e+02
## 304  excluded_household_list  AKO_01          2.906181e+02
## 305  excluded_household_list  AKO_01          2.906181e+02
## 306  excluded_household_list  AKO_01          2.906181e+02
## 307  excluded_household_list  AKO_01          2.906181e+02
## 308  excluded_household_list  AKO_01          2.906181e+02
## 309  excluded_household_list  AKO_01          2.906181e+02
## 310  excluded_household_list  AKO_01          2.906181e+02
## 311  excluded_household_list  AKO_01          2.906181e+02
## 312  excluded_household_list  AKO_01          2.906181e+02
## 313  excluded_household_list  AKO_01          2.906181e+02
## 314  excluded_household_list  AKO_01          2.906181e+02
## 315  excluded_household_list  AKO_01          2.906181e+02
## 316  excluded_household_list  AKO_01          2.906181e+02
## 317  excluded_household_list  AKO_01          2.906181e+02
## 318  excluded_household_list  AKO_01          2.906181e+02
## 319  excluded_household_list  AKO_01          2.906181e+02
## 320  excluded_household_list  AKO_01          2.906181e+02
## 321  excluded_household_list  AKO_01          2.906181e+02
## 322  excluded_household_list  AKO_01          2.906181e+02
## 323  excluded_household_list  AKO_01          2.906181e+02
## 324  excluded_household_list  AKO_01          2.906181e+02
## 325  excluded_household_list  AKO_01          2.906181e+02
## 326  excluded_household_list  AKO_01          2.906181e+02
## 327  excluded_household_list  AKO_01          2.906181e+02
## 328  excluded_household_list  AKO_01          2.906181e+02
## 329  excluded_household_list  AKO_01          2.906181e+02
## 330  excluded_household_list  AKO_01          2.906181e+02
## 331  excluded_household_list  AKO_01          2.906181e+02
## 332  excluded_household_list  AKO_01          2.906181e+02
## 333  excluded_household_list  AKO_01          2.906181e+02
## 334  excluded_household_list  AKO_01          2.906181e+02
## 335  excluded_household_list  AKO_01          2.906181e+02
## 336  excluded_household_list  AKO_01          2.906181e+02
## 337  excluded_household_list  AKO_01          2.906181e+02
## 338  excluded_household_list  AKO_01          2.906181e+02
## 339  excluded_household_list  AKO_01          2.906181e+02
## 340  excluded_household_list  AKO_01          2.906181e+02
## 341  excluded_household_list  AKO_01          2.906181e+02
## 342  excluded_household_list  AKO_01          2.906181e+02
## 343  excluded_household_list  AKO_01          2.906181e+02
## 344  excluded_household_list  AKO_01          2.906181e+02
## 345  excluded_household_list  AKO_01          2.906181e+02
## 346  excluded_household_list  AKO_01          2.906181e+02
## 347  excluded_household_list  AKO_01          2.906181e+02
## 348  excluded_household_list  AKO_01          2.906181e+02
## 349  excluded_household_list  AKO_01          2.906181e+02
## 350  excluded_household_list  AKO_01          2.906181e+02
## 351  excluded_household_list  AKO_01          2.906181e+02
## 352  excluded_household_list  AKO_01          2.906181e+02
## 353  excluded_household_list  AKO_01          2.906181e+02
## 354  excluded_household_list  AKO_01          2.906181e+02
## 355  excluded_household_list  AKO_01          2.906181e+02
## 356  excluded_household_list  AKO_01          2.906181e+02
## 357  excluded_household_list  AKO_01          2.906181e+02
## 358  excluded_household_list  AKO_01          2.906181e+02
## 359  excluded_household_list  AKO_01          2.906181e+02
## 360  excluded_household_list  AKO_01          2.906181e+02
## 361  excluded_household_list  AKO_01          2.906181e+02
## 362  excluded_household_list  AKO_01          2.906181e+02
## 363  excluded_household_list  AKO_01          2.906181e+02
## 364  excluded_household_list  AKO_01          2.906181e+02
## 365  excluded_household_list  AKO_01          2.906181e+02
## 366  excluded_household_list  AKO_01          2.906181e+02
## 367  excluded_household_list  AKO_01          2.906181e+02
## 368  excluded_household_list  AKO_01          2.906181e+02
## 369  excluded_household_list  AKO_01          9.319444e+00
## 370  excluded_household_list  AKO_01          9.319444e+00
## 371  excluded_household_list  AKO_01          9.319444e+00
## 372  excluded_household_list  AKO_01          9.319444e+00
## 373  excluded_household_list  AKO_01          9.319444e+00
## 374  excluded_household_list  AKO_01          9.319444e+00
## 375  excluded_household_list  AKO_01          9.319444e+00
## 376  excluded_household_list  AKO_01          9.319444e+00
## 377  excluded_household_list  AKO_01          9.319444e+00
## 378  excluded_household_list  AKO_01          9.319444e+00
## 379  excluded_household_list  AKO_01          9.319444e+00
## 380  excluded_household_list  AKO_01          9.319444e+00
## 381  excluded_household_list  AKO_01          9.319444e+00
## 382  excluded_household_list  AKO_01          9.319444e+00
## 383  excluded_household_list  AKO_01          7.909722e+00
## 384  excluded_household_list  AKO_01          7.909722e+00
## 385  excluded_household_list  AKO_01          7.909722e+00
## 386  excluded_household_list  AKO_01          7.909722e+00
## 387  excluded_household_list  AKO_01          7.909722e+00
## 388  excluded_household_list  AKO_01          7.909722e+00
## 389  excluded_household_list  AKO_01          7.909722e+00
## 390  excluded_household_list  AKO_01          7.909722e+00
## 391  excluded_household_list  AKO_01          7.909722e+00
## 392  excluded_household_list  AKO_01          7.909722e+00
## 393  excluded_household_list  AKO_01          7.909722e+00
## 394  excluded_household_list  AKO_01          7.909722e+00
## 395  excluded_household_list  AKO_01          7.909722e+00
## 396  excluded_household_list  AKO_01          7.909722e+00
## 397  excluded_household_list  AKO_01          7.909722e+00
## 398  excluded_household_list  AKO_01          7.909722e+00
## 399                  ambient AKO_01B          1.299306e+01
## 400                       ok AKO_01B          1.299306e+01
## 401                       ok AKO_01B          1.218750e+01
## 402                       ok AKO_01B          1.218750e+01
## 403                       ok AKO_01B          1.218750e+01
## 404                       ok AKO_01B          1.218750e+01
## 405                       ok AKO_01B          1.218750e+01
## 406                       ok AKO_01B          1.218750e+01
## 407                       ok AKO_01B          1.218750e+01
## 408                       ok AKO_01B          1.218750e+01
## 409                       ok AKO_01B          1.218750e+01
## 410                       ok AKO_01B          1.218750e+01
## 411                       ok AKO_01B          1.218750e+01
## 412                       ok AKO_01B          1.218750e+01
## 413                       ok AKO_01B          1.218750e+01
## 414                       ok AKO_01B          1.218750e+01
## 415                       ok AKO_01B          1.218750e+01
## 416                       ok AKO_01B          1.218750e+01
## 417                       ok AKO_01B          1.218750e+01
## 418                       ok AKO_01B          1.218750e+01
## 419                       ok AKO_01B          1.218750e+01
## 420  excluded_household_list  AKO_02          1.499306e+01
## 421  excluded_household_list  AKO_02          1.123611e+01
## 422  excluded_household_list  AKO_02          1.123611e+01
## 423  excluded_household_list  AKO_02          1.201389e+01
## 424  excluded_household_list  AKO_02          1.201389e+01
## 425  excluded_household_list  AKO_02          1.201389e+01
## 426  excluded_household_list  AKO_02          1.201389e+01
## 427  excluded_household_list  AKO_02          1.201389e+01
## 428  excluded_household_list  AKO_02          1.201389e+01
## 429  excluded_household_list  AKO_02          1.201389e+01
## 430  excluded_household_list  AKO_02          1.201389e+01
## 431  excluded_household_list  AKO_02          1.201389e+01
## 432  excluded_household_list  AKO_02          1.201389e+01
## 433  excluded_household_list  AKO_02          1.201389e+01
## 434  excluded_household_list  AKO_02          1.201389e+01
## 435  excluded_household_list  AKO_02          1.201389e+01
## 436  excluded_household_list  AKO_02          1.201389e+01
## 437  excluded_household_list  AKO_02          1.201389e+01
## 438  excluded_household_list  AKO_02          1.201389e+01
## 439  excluded_household_list  AKO_02          1.201389e+01
## 440  excluded_household_list  AKO_02          1.201389e+01
## 441  excluded_household_list  AKO_02          1.201389e+01
## 442  excluded_household_list  AKO_02          1.201389e+01
## 443  excluded_household_list  AKO_02          1.201389e+01
## 444  excluded_household_list  AKO_02          1.201389e+01
## 445  excluded_household_list  AKO_02          1.299306e+01
## 446  excluded_household_list  AKO_02          1.235417e+01
## 447  excluded_household_list  AKO_02          1.235417e+01
## 448  excluded_household_list  AKO_02          1.235417e+01
## 449  excluded_household_list  AKO_02          1.235417e+01
## 450  excluded_household_list  AKO_02          1.235417e+01
## 451  excluded_household_list  AKO_02          1.235417e+01
## 452  excluded_household_list  AKO_02          1.235417e+01
## 453  excluded_household_list  AKO_02          1.235417e+01
## 454  excluded_household_list  AKO_02          1.235417e+01
## 455  excluded_household_list  AKO_02          1.235417e+01
## 456  excluded_household_list  AKO_02          1.235417e+01
## 457  excluded_household_list  AKO_02          1.235417e+01
## 458  excluded_household_list  AKO_02          1.235417e+01
## 459  excluded_household_list  AKO_02          1.235417e+01
## 460  excluded_household_list  AKO_02          1.235417e+01
## 461  excluded_household_list  AKO_02          1.235417e+01
## 462  excluded_household_list  AKO_02          1.235417e+01
## 463  excluded_household_list  AKO_02          1.235417e+01
## 464  excluded_household_list  AKO_02          1.235417e+01
## 465  excluded_household_list  AKO_02          1.235417e+01
## 466  excluded_household_list  AKO_02          1.235417e+01
## 467  excluded_household_list  AKO_02          1.235417e+01
## 468  excluded_household_list  AKO_02          1.235417e+01
## 469      short_file_duration  AKO_02          5.972222e-01
## 470      short_file_duration  AKO_02          5.972222e-01
## 471  excluded_household_list  AKO_02          2.699306e+01
## 472  excluded_household_list  AKO_02          2.622222e+01
## 473  excluded_household_list  AKO_02          2.622222e+01
## 474  excluded_household_list  AKO_02          2.622222e+01
## 475  excluded_household_list  AKO_02          2.622222e+01
## 476  excluded_household_list  AKO_02          2.622222e+01
## 477  excluded_household_list  AKO_02          2.622222e+01
## 478  excluded_household_list  AKO_02          2.622222e+01
## 479  excluded_household_list  AKO_02          2.622222e+01
## 480  excluded_household_list  AKO_02          2.622222e+01
## 481  excluded_household_list  AKO_02          2.622222e+01
## 482  excluded_household_list  AKO_02          2.622222e+01
## 483  excluded_household_list  AKO_02          2.622222e+01
## 484  excluded_household_list  AKO_02          2.622222e+01
## 485  excluded_household_list  AKO_02          2.622222e+01
## 486  excluded_household_list  AKO_02          2.622222e+01
## 487  excluded_household_list  AKO_02          2.622222e+01
## 488  excluded_household_list  AKO_02          2.622222e+01
## 489  excluded_household_list  AKO_02          2.622222e+01
## 490  excluded_household_list  AKO_02          2.622222e+01
## 491  excluded_household_list  AKO_02          2.622222e+01
## 492  excluded_household_list  AKO_02          2.622222e+01
## 493  excluded_household_list  AKO_02          2.622222e+01
## 494  excluded_household_list  AKO_02          2.622222e+01
## 495  excluded_household_list  AKO_02          2.622222e+01
## 496  excluded_household_list  AKO_02          2.622222e+01
## 497  excluded_household_list  AKO_02          2.622222e+01
## 498  excluded_household_list  AKO_02          2.622222e+01
## 499  excluded_household_list  AKO_02          2.622222e+01
## 500  excluded_household_list  AKO_02          2.622222e+01
## 501  excluded_household_list  AKO_02          2.622222e+01
## 502  excluded_household_list  AKO_02          2.622222e+01
## 503  excluded_household_list  AKO_02          2.622222e+01
## 504  excluded_household_list  AKO_02          2.622222e+01
## 505  excluded_household_list  AKO_02          2.622222e+01
## 506  excluded_household_list  AKO_02          2.622222e+01
## 507  excluded_household_list  AKO_02          2.622222e+01
## 508  excluded_household_list  AKO_02          2.622222e+01
## 509  excluded_household_list  AKO_02          2.622222e+01
## 510  excluded_household_list  AKO_02          2.622222e+01
## 511  excluded_household_list  AKO_02          2.622222e+01
## 512  excluded_household_list  AKO_02          2.622222e+01
## 513  excluded_household_list  AKO_02          2.622222e+01
## 514  excluded_household_list  AKO_02          2.622222e+01
## 515  excluded_household_list  AKO_02          2.622222e+01
## 516  excluded_household_list  AKO_02          3.416667e+00
## 517  excluded_household_list  AKO_02          3.416667e+00
## 518  excluded_household_list  AKO_02          3.416667e+00
## 519  excluded_household_list  AKO_02          3.416667e+00
## 520  excluded_household_list  AKO_02          3.416667e+00
## 521  excluded_household_list  AKO_02          3.416667e+00
## 522  excluded_household_list  AKO_02          3.416667e+00
## 523  excluded_household_list  AKO_02          3.416667e+00
## 524  excluded_household_list  AKO_02          3.416667e+00
## 525  excluded_household_list  AKO_02          8.993056e+00
## 526  excluded_household_list  AKO_02          8.993056e+00
## 527  excluded_household_list  AKO_02          7.680556e+00
## 528  excluded_household_list  AKO_02          7.680556e+00
## 529  excluded_household_list  AKO_02          7.680556e+00
## 530  excluded_household_list  AKO_02          7.680556e+00
## 531  excluded_household_list  AKO_02          7.680556e+00
## 532  excluded_household_list  AKO_02          7.680556e+00
## 533  excluded_household_list  AKO_02          7.680556e+00
## 534  excluded_household_list  AKO_02          7.680556e+00
## 535  excluded_household_list  AKO_02          7.680556e+00
## 536  excluded_household_list  AKO_02          7.680556e+00
## 537  excluded_household_list  AKO_02          7.680556e+00
## 538  excluded_household_list  AKO_02          7.680556e+00
## 539  excluded_household_list  AKO_02          7.680556e+00
## 540  excluded_household_list  AKO_02          7.680556e+00
## 541  excluded_household_list  AKO_02          7.680556e+00
## 542  excluded_household_list  AKO_02          7.680556e+00
## 543  excluded_household_list  AKO_02          7.680556e+00
## 544  excluded_household_list  AKO_02          7.680556e+00
## 545  excluded_household_list  AKO_02          7.680556e+00
## 546  excluded_household_list  AKO_02          7.680556e+00
## 547  excluded_household_list  AKO_02          7.680556e+00
## 548  excluded_household_list  AKO_02          7.680556e+00
## 549  excluded_household_list  AKO_02          7.680556e+00
## 550  excluded_household_list  AKO_02          7.680556e+00
## 551  excluded_household_list  AKO_02          2.906111e+02
## 552  excluded_household_list  AKO_02          2.906111e+02
## 553  excluded_household_list  AKO_02          2.906111e+02
## 554  excluded_household_list  AKO_02          2.906111e+02
## 555  excluded_household_list  AKO_02          2.906111e+02
## 556  excluded_household_list  AKO_02          2.906111e+02
## 557  excluded_household_list  AKO_02          2.906111e+02
## 558  excluded_household_list  AKO_02          2.906111e+02
## 559  excluded_household_list  AKO_02          2.906111e+02
## 560  excluded_household_list  AKO_02          2.906111e+02
## 561  excluded_household_list  AKO_02          2.906111e+02
## 562  excluded_household_list  AKO_02          2.906111e+02
## 563  excluded_household_list  AKO_02          2.906111e+02
## 564  excluded_household_list  AKO_02          2.906111e+02
## 565  excluded_household_list  AKO_02          2.906111e+02
## 566  excluded_household_list  AKO_02          2.906111e+02
## 567  excluded_household_list  AKO_02          2.906111e+02
## 568  excluded_household_list  AKO_02          2.906111e+02
## 569  excluded_household_list  AKO_02          2.906111e+02
## 570  excluded_household_list  AKO_02          2.906111e+02
## 571  excluded_household_list  AKO_02          2.906111e+02
## 572  excluded_household_list  AKO_02          2.906111e+02
## 573  excluded_household_list  AKO_02          2.906111e+02
## 574  excluded_household_list  AKO_02          2.906111e+02
## 575  excluded_household_list  AKO_02          2.906111e+02
## 576  excluded_household_list  AKO_02          2.906111e+02
## 577  excluded_household_list  AKO_02          2.906111e+02
## 578  excluded_household_list  AKO_02          2.906111e+02
## 579  excluded_household_list  AKO_02          2.906111e+02
## 580  excluded_household_list  AKO_02          2.906111e+02
## 581  excluded_household_list  AKO_02          2.906111e+02
## 582  excluded_household_list  AKO_02          2.906111e+02
## 583  excluded_household_list  AKO_02          2.906111e+02
## 584  excluded_household_list  AKO_02          2.906111e+02
## 585  excluded_household_list  AKO_02          2.906111e+02
## 586  excluded_household_list  AKO_02          2.906111e+02
## 587  excluded_household_list  AKO_02          2.906111e+02
## 588  excluded_household_list  AKO_02          2.906111e+02
## 589  excluded_household_list  AKO_02          2.906111e+02
## 590  excluded_household_list  AKO_02          2.906111e+02
## 591  excluded_household_list  AKO_02          2.906111e+02
## 592  excluded_household_list  AKO_02          2.907083e+02
## 593  excluded_household_list  AKO_02          2.907083e+02
## 594  excluded_household_list  AKO_02          2.907083e+02
## 595  excluded_household_list  AKO_02          2.907083e+02
## 596  excluded_household_list  AKO_02          2.907083e+02
## 597  excluded_household_list  AKO_02          2.907083e+02
## 598  excluded_household_list  AKO_02          2.907083e+02
## 599  excluded_household_list  AKO_02          2.907083e+02
## 600  excluded_household_list  AKO_02          2.907083e+02
## 601  excluded_household_list  AKO_02          2.907083e+02
## 602  excluded_household_list  AKO_02          2.907083e+02
## 603  excluded_household_list  AKO_02          2.907083e+02
## 604  excluded_household_list  AKO_02          2.907083e+02
## 605  excluded_household_list  AKO_02          2.907083e+02
## 606  excluded_household_list  AKO_02          2.907083e+02
## 607  excluded_household_list  AKO_02          2.907083e+02
## 608  excluded_household_list  AKO_02          2.907083e+02
## 609  excluded_household_list  AKO_02          2.907083e+02
## 610  excluded_household_list  AKO_02          2.907083e+02
## 611  excluded_household_list  AKO_02          2.907083e+02
## 612  excluded_household_list  AKO_02          2.907083e+02
## 613  excluded_household_list  AKO_02          2.907083e+02
## 614  excluded_household_list  AKO_02          2.907083e+02
## 615  excluded_household_list  AKO_02          2.907083e+02
## 616  excluded_household_list  AKO_02          2.907083e+02
## 617  excluded_household_list  AKO_02          2.907083e+02
## 618  excluded_household_list  AKO_02          2.907083e+02
## 619  excluded_household_list  AKO_02          2.907083e+02
## 620  excluded_household_list  AKO_02          2.907083e+02
## 621  excluded_household_list  AKO_02          2.907083e+02
## 622  excluded_household_list  AKO_02          2.907083e+02
## 623  excluded_household_list  AKO_02          2.907083e+02
## 624  excluded_household_list  AKO_02          2.907083e+02
## 625  excluded_household_list  AKO_02          2.907083e+02
## 626  excluded_household_list  AKO_02          2.907083e+02
## 627  excluded_household_list  AKO_02          2.907083e+02
## 628  excluded_household_list  AKO_02          2.907083e+02
## 629  excluded_household_list  AKO_02          2.907083e+02
## 630  excluded_household_list  AKO_02          2.907083e+02
## 631  excluded_household_list  AKO_02          2.907083e+02
## 632  excluded_household_list  AKO_02          2.907083e+02
## 633  excluded_household_list  AKO_02          2.907083e+02
## 634  excluded_household_list  AKO_02          2.907083e+02
## 635  excluded_household_list  AKO_02          2.907083e+02
## 636  excluded_household_list  AKO_02          2.907083e+02
## 637  excluded_household_list  AKO_02          2.907083e+02
## 638  excluded_household_list  AKO_02          2.907083e+02
## 639  excluded_household_list  AKO_02          2.907083e+02
## 640  excluded_household_list  AKO_02          2.907083e+02
## 641  excluded_household_list  AKO_02          2.907083e+02
## 642  excluded_household_list  AKO_02          2.907083e+02
## 643  excluded_household_list  AKO_02          2.907083e+02
## 644  excluded_household_list  AKO_02          2.907083e+02
## 645  excluded_household_list  AKO_02          2.907083e+02
## 646  excluded_household_list  AKO_02          2.907083e+02
## 647  excluded_household_list  AKO_02          2.907083e+02
## 648  excluded_household_list  AKO_02          2.907083e+02
## 649  excluded_household_list  AKO_02          2.907083e+02
## 650  excluded_household_list  AKO_02          2.907083e+02
## 651  excluded_household_list  AKO_02          2.907083e+02
## 652  excluded_household_list  AKO_02          2.907083e+02
## 653  excluded_household_list  AKO_02          2.907083e+02
## 654  excluded_household_list  AKO_02          2.907083e+02
## 655  excluded_household_list  AKO_02          2.907083e+02
## 656  excluded_household_list  AKO_02          2.907083e+02
## 657  excluded_household_list  AKO_02          2.907083e+02
## 658  excluded_household_list  AKO_02          2.907083e+02
## 659  excluded_household_list  AKO_02          2.907083e+02
## 660  excluded_household_list  AKO_02          2.907083e+02
## 661  excluded_household_list  AKO_02          2.907083e+02
## 662  excluded_household_list  AKO_02          2.907083e+02
## 663  excluded_household_list  AKO_02          2.907083e+02
## 664  excluded_household_list  AKO_02          2.907083e+02
## 665  excluded_household_list  AKO_02          2.907083e+02
## 666  excluded_household_list  AKO_02          2.907083e+02
## 667  excluded_household_list  AKO_02          2.907083e+02
## 668  excluded_household_list  AKO_02          2.907083e+02
## 669  excluded_household_list  AKO_02          2.907083e+02
## 670  excluded_household_list  AKO_02          2.907083e+02
## 671  excluded_household_list  AKO_02          2.907083e+02
## 672  excluded_household_list  AKO_02          2.907083e+02
## 673  excluded_household_list  AKO_02          2.907083e+02
## 674  excluded_household_list  AKO_02          2.907083e+02
## 675  excluded_household_list  AKO_02          2.907083e+02
## 676  excluded_household_list  AKO_02          2.907083e+02
## 677  excluded_household_list  AKO_02          2.907083e+02
## 678  excluded_household_list  AKO_02          2.907083e+02
## 679  excluded_household_list  AKO_02          2.907083e+02
## 680  excluded_household_list  AKO_02          2.907083e+02
## 681  excluded_household_list  AKO_02          2.907083e+02
## 682  excluded_household_list  AKO_02          2.907083e+02
## 683  excluded_household_list  AKO_02          2.907083e+02
## 684  excluded_household_list  AKO_02          2.907083e+02
## 685  excluded_household_list  AKO_02          2.907083e+02
## 686  excluded_household_list  AKO_02          2.907083e+02
## 687  excluded_household_list  AKO_02          2.907083e+02
## 688  excluded_household_list  AKO_02          2.907083e+02
## 689  excluded_household_list  AKO_02          2.907083e+02
## 690  excluded_household_list  AKO_02          2.907083e+02
## 691  excluded_household_list  AKO_02          2.907083e+02
## 692  excluded_household_list  AKO_02          2.907083e+02
## 693  excluded_household_list  AKO_02          2.907083e+02
## 694  excluded_household_list  AKO_02          2.907083e+02
## 695  excluded_household_list  AKO_02          2.907083e+02
## 696  excluded_household_list  AKO_02          2.903681e+02
## 697  excluded_household_list  AKO_02          2.903681e+02
## 698  excluded_household_list  AKO_02          2.903681e+02
## 699  excluded_household_list  AKO_02          2.903681e+02
## 700  excluded_household_list  AKO_02          2.903681e+02
## 701  excluded_household_list  AKO_02          2.903681e+02
## 702  excluded_household_list  AKO_02          2.903681e+02
## 703  excluded_household_list  AKO_02          2.903681e+02
## 704  excluded_household_list  AKO_02          2.903681e+02
## 705  excluded_household_list  AKO_02          2.903681e+02
## 706  excluded_household_list  AKO_02          2.903681e+02
## 707  excluded_household_list  AKO_02          2.903681e+02
## 708  excluded_household_list  AKO_02          2.903681e+02
## 709  excluded_household_list  AKO_02          2.903681e+02
## 710  excluded_household_list  AKO_02          2.903681e+02
## 711  excluded_household_list  AKO_02          2.903681e+02
## 712  excluded_household_list  AKO_02          2.903681e+02
## 713  excluded_household_list  AKO_02          2.903681e+02
## 714  excluded_household_list  AKO_02          2.903681e+02
## 715  excluded_household_list  AKO_02          2.903681e+02
## 716  excluded_household_list  AKO_02          2.903681e+02
## 717  excluded_household_list  AKO_02          2.903681e+02
## 718  excluded_household_list  AKO_02          2.903681e+02
## 719  excluded_household_list  AKO_02          2.903681e+02
## 720  excluded_household_list  AKO_02          2.903681e+02
## 721  excluded_household_list  AKO_02          2.903681e+02
## 722  excluded_household_list  AKO_02          2.903681e+02
## 723  excluded_household_list  AKO_02          2.903681e+02
## 724  excluded_household_list  AKO_02          2.903681e+02
## 725  excluded_household_list  AKO_02          2.903681e+02
## 726  excluded_household_list  AKO_02          2.903681e+02
## 727  excluded_household_list  AKO_02          2.903681e+02
## 728  excluded_household_list  AKO_02          2.903681e+02
## 729  excluded_household_list  AKO_02          2.903681e+02
## 730  excluded_household_list  AKO_02          2.903681e+02
## 731  excluded_household_list  AKO_02          2.903681e+02
## 732  excluded_household_list  AKO_02          2.903681e+02
## 733  excluded_household_list  AKO_02          2.903681e+02
## 734  excluded_household_list  AKO_02          2.903681e+02
## 735  excluded_household_list  AKO_02          2.903681e+02
## 736  excluded_household_list  AKO_02          2.903681e+02
## 737  excluded_household_list  AKO_02          2.903681e+02
## 738  excluded_household_list  AKO_02          2.903681e+02
## 739  excluded_household_list  AKO_02          2.903681e+02
## 740  excluded_household_list  AKO_02          2.903681e+02
## 741  excluded_household_list  AKO_02          2.903681e+02
## 742  excluded_household_list  AKO_02          2.903681e+02
## 743  excluded_household_list  AKO_02          2.903681e+02
## 744  excluded_household_list  AKO_02          2.903681e+02
## 745  excluded_household_list  AKO_02          2.903681e+02
## 746  excluded_household_list  AKO_02          2.903681e+02
## 747  excluded_household_list  AKO_02          2.903681e+02
## 748  excluded_household_list  AKO_02          2.903681e+02
## 749  excluded_household_list  AKO_02          2.903681e+02
## 750  excluded_household_list  AKO_02          2.903681e+02
## 751  excluded_household_list  AKO_02          2.903681e+02
## 752  excluded_household_list  AKO_02          2.903681e+02
## 753  excluded_household_list  AKO_02          2.903681e+02
## 754  excluded_household_list  AKO_02          2.903681e+02
## 755  excluded_household_list  AKO_02          2.903681e+02
## 756  excluded_household_list  AKO_02          2.903681e+02
## 757  excluded_household_list  AKO_02          2.903681e+02
## 758  excluded_household_list  AKO_02          2.903681e+02
## 759  excluded_household_list  AKO_02          2.903681e+02
## 760  excluded_household_list  AKO_02          2.903681e+02
## 761  excluded_household_list  AKO_02          9.993056e+00
## 762  excluded_household_list  AKO_02          5.166667e+00
## 763  excluded_household_list  AKO_02          5.166667e+00
## 764  excluded_household_list  AKO_02          5.166667e+00
## 765  excluded_household_list  AKO_02          5.166667e+00
## 766  excluded_household_list  AKO_02          9.076389e+00
## 767  excluded_household_list  AKO_02          9.076389e+00
## 768  excluded_household_list  AKO_02          9.076389e+00
## 769  excluded_household_list  AKO_02          9.076389e+00
## 770  excluded_household_list  AKO_02          9.076389e+00
## 771  excluded_household_list  AKO_02          9.076389e+00
## 772  excluded_household_list  AKO_02          9.076389e+00
## 773  excluded_household_list  AKO_02          9.076389e+00
## 774  excluded_household_list  AKO_02          9.076389e+00
## 775  excluded_household_list  AKO_02          9.076389e+00
## 776  excluded_household_list  AKO_02          9.076389e+00
## 777  excluded_household_list  AKO_02          9.076389e+00
## 778  excluded_household_list  AKO_02          9.076389e+00
## 779  excluded_household_list  AKO_02          9.076389e+00
## 780  excluded_household_list  AKO_02          9.076389e+00
## 781  excluded_household_list  AKO_02          9.076389e+00
## 782  excluded_household_list  AKO_02          9.076389e+00
## 783  excluded_household_list  AKO_02          9.076389e+00
## 784  excluded_household_list  AKO_02          9.076389e+00
## 785  excluded_household_list  AKO_02          9.076389e+00
## 786  excluded_household_list  AKO_02          9.076389e+00
## 787  excluded_household_list  AKO_02          9.076389e+00
## 788  excluded_household_list  AKO_02          9.076389e+00
## 789  excluded_household_list  AKO_02          9.076389e+00
## 790  excluded_household_list  AKO_02          9.076389e+00
## 791  excluded_household_list  AKO_02          9.076389e+00
## 792  excluded_household_list  AKO_02          1.096528e+01
## 793  excluded_household_list  AKO_02          1.096528e+01
## 794  excluded_household_list  AKO_02          1.096528e+01
## 795  excluded_household_list  AKO_02          1.096528e+01
## 796  excluded_household_list  AKO_02          1.096528e+01
## 797  excluded_household_list  AKO_02          1.096528e+01
## 798  excluded_household_list  AKO_02          1.096528e+01
## 799  excluded_household_list  AKO_02          1.096528e+01
## 800  excluded_household_list  AKO_02          1.096528e+01
## 801  excluded_household_list  AKO_02          1.096528e+01
## 802  excluded_household_list  AKO_02          1.096528e+01
## 803  excluded_household_list  AKO_02          1.096528e+01
## 804  excluded_household_list  AKO_02          1.096528e+01
## 805  excluded_household_list  AKO_02          1.096528e+01
## 806  excluded_household_list  AKO_02          1.096528e+01
## 807  excluded_household_list  AKO_02          1.096528e+01
## 808  excluded_household_list  AKO_02          1.096528e+01
## 809  excluded_household_list  AKO_02          1.096528e+01
## 810  excluded_household_list  AKO_02          1.106944e+01
## 811  excluded_household_list  AKO_02          1.106944e+01
## 812  excluded_household_list  AKO_02          1.106944e+01
## 813  excluded_household_list  AKO_02          1.106944e+01
## 814  excluded_household_list  AKO_02          1.106944e+01
## 815  excluded_household_list  AKO_02          1.106944e+01
## 816  excluded_household_list  AKO_02          1.106944e+01
## 817  excluded_household_list  AKO_02          1.106944e+01
## 818  excluded_household_list  AKO_02          1.106944e+01
## 819  excluded_household_list  AKO_02          1.106944e+01
## 820  excluded_household_list  AKO_02          1.106944e+01
## 821  excluded_household_list  AKO_02          1.106944e+01
## 822  excluded_household_list  AKO_02          1.106944e+01
## 823  excluded_household_list  AKO_02          1.106944e+01
## 824  excluded_household_list  AKO_02          1.106944e+01
## 825  excluded_household_list  AKO_02          1.106944e+01
## 826  excluded_household_list  AKO_02          1.106944e+01
## 827  excluded_household_list  AKO_02          1.106944e+01
## 828  excluded_household_list  AKO_02          1.106944e+01
## 829  excluded_household_list  AKO_02          1.106944e+01
## 830  excluded_household_list  AKO_02          1.106944e+01
## 831  excluded_household_list  AKO_02          9.006944e+00
## 832  excluded_household_list  AKO_02          9.006944e+00
## 833  excluded_household_list  AKO_02          9.006944e+00
## 834  excluded_household_list  AKO_02          9.006944e+00
## 835  excluded_household_list  AKO_02          9.006944e+00
## 836  excluded_household_list  AKO_02          9.006944e+00
## 837  excluded_household_list  AKO_02          9.006944e+00
## 838  excluded_household_list  AKO_02          9.006944e+00
## 839  excluded_household_list  AKO_02          9.006944e+00
## 840  excluded_household_list  AKO_02          9.006944e+00
## 841  excluded_household_list  AKO_02          9.006944e+00
## 842  excluded_household_list  AKO_02          9.006944e+00
## 843  excluded_household_list  AKO_02          9.006944e+00
## 844  excluded_household_list  AKO_02          9.006944e+00
## 845  excluded_household_list  AKO_02          9.006944e+00
## 846  excluded_household_list  AKO_02          9.006944e+00
## 847  excluded_household_list  AKO_02          9.006944e+00
## 848  excluded_household_list  AKO_02          4.458333e+00
## 849  excluded_household_list  AKO_02          4.458333e+00
## 850  excluded_household_list  AKO_02          4.458333e+00
## 851  excluded_household_list  AKO_02          4.458333e+00
## 852  excluded_household_list  AKO_02          4.458333e+00
## 853  excluded_household_list  AKO_02          4.458333e+00
## 854  excluded_household_list  AKO_02          4.458333e+00
## 855  excluded_household_list  AKO_02          4.458333e+00
## 856  excluded_household_list  AKO_02          4.458333e+00
## 857  excluded_household_list  AKO_02          4.458333e+00
## 858  excluded_household_list  AKO_02          3.756944e+00
## 859  excluded_household_list  AKO_02          3.756944e+00
## 860  excluded_household_list  AKO_02          3.756944e+00
## 861  excluded_household_list  AKO_02          3.756944e+00
## 862  excluded_household_list  AKO_02          3.756944e+00
## 863  excluded_household_list  AKO_02          3.756944e+00
## 864  excluded_household_list  AKO_02          3.756944e+00
## 865  excluded_household_list  AKO_02          3.756944e+00
## 866  excluded_household_list  AKO_02          3.756944e+00
## 867  excluded_household_list  AKO_02          3.256944e+00
## 868  excluded_household_list  AKO_02          3.256944e+00
## 869  excluded_household_list  AKO_02          3.256944e+00
## 870                       ok AKO_02B          1.299306e+01
## 871                       ok AKO_02B          1.247917e+01
## 872                       ok AKO_02B          1.247917e+01
## 873                       ok AKO_02B          1.247917e+01
## 874                       ok AKO_02B          1.247917e+01
## 875                       ok AKO_02B          1.247917e+01
## 876                       ok AKO_02B          1.247917e+01
## 877                       ok AKO_02B          1.247917e+01
## 878                       ok AKO_02B          1.247917e+01
## 879                       ok AKO_02B          1.247917e+01
## 880                       ok AKO_02B          1.247917e+01
## 881                       ok AKO_02B          1.247917e+01
## 882                       ok AKO_02B          1.247917e+01
## 883                       ok AKO_02B          1.247917e+01
## 884                       ok AKO_02B          1.247917e+01
## 885                       ok AKO_02B          1.247917e+01
## 886                       ok AKO_02B          1.247917e+01
## 887                       ok AKO_02B          1.247917e+01
## 888                       ok AKO_02B          1.247917e+01
## 889                       ok AKO_02B          1.247917e+01
## 890                       ok AKO_02B          2.826389e+00
## 891                       ok AKO_02B          2.826389e+00
## 892                       ok AKO_02B          2.826389e+00
## 893                       ok AKO_02B          2.826389e+00
## 894                       ok AKO_02B          2.826389e+00
## 895                       ok AKO_02B          2.826389e+00
## 896                       ok AKO_02B          2.826389e+00
## 897  excluded_household_list  AKO_03          1.319444e+01
## 898  excluded_household_list  AKO_03          1.319444e+01
## 899  excluded_household_list  AKO_03          1.319444e+01
## 900  excluded_household_list  AKO_03          1.319444e+01
## 901  excluded_household_list  AKO_03          1.319444e+01
## 902  excluded_household_list  AKO_03          1.319444e+01
## 903  excluded_household_list  AKO_03          1.319444e+01
## 904  excluded_household_list  AKO_03          1.319444e+01
## 905  excluded_household_list  AKO_03          1.319444e+01
## 906  excluded_household_list  AKO_03          1.319444e+01
## 907  excluded_household_list  AKO_03          1.319444e+01
## 908  excluded_household_list  AKO_03          1.319444e+01
## 909  excluded_household_list  AKO_03          1.319444e+01
## 910  excluded_household_list  AKO_03          1.319444e+01
## 911  excluded_household_list  AKO_03          1.319444e+01
## 912  excluded_household_list  AKO_03          1.319444e+01
## 913  excluded_household_list  AKO_03          1.319444e+01
## 914  excluded_household_list  AKO_03          1.319444e+01
## 915  excluded_household_list  AKO_03          1.319444e+01
## 916  excluded_household_list  AKO_03          1.319444e+01
## 917  excluded_household_list  AKO_03          1.319444e+01
## 918  excluded_household_list  AKO_03          1.319444e+01
## 919  excluded_household_list  AKO_03          1.319444e+01
## 920  excluded_household_list  AKO_03          1.319444e+01
## 921  excluded_household_list  AKO_03          1.319444e+01
## 922  excluded_household_list  AKO_03          1.319444e+01
## 923  excluded_household_list  AKO_03          1.319444e+01
## 924  excluded_household_list  AKO_03          1.319444e+01
## 925  excluded_household_list  AKO_03          1.319444e+01
## 926  excluded_household_list  AKO_03          1.319444e+01
## 927  excluded_household_list  AKO_03          1.319444e+01
## 928  excluded_household_list  AKO_03          1.319444e+01
## 929  excluded_household_list  AKO_03          1.319444e+01
## 930  excluded_household_list  AKO_03          1.319444e+01
## 931  excluded_household_list  AKO_03          1.319444e+01
## 932  excluded_household_list  AKO_03          1.319444e+01
## 933  excluded_household_list  AKO_03          1.319444e+01
## 934  excluded_household_list  AKO_03          1.319444e+01
## 935  excluded_household_list  AKO_03          1.319444e+01
## 936  excluded_household_list  AKO_03          1.339583e+01
## 937  excluded_household_list  AKO_03          1.339583e+01
## 938  excluded_household_list  AKO_03          1.339583e+01
## 939  excluded_household_list  AKO_03          1.339583e+01
## 940  excluded_household_list  AKO_03          1.339583e+01
## 941  excluded_household_list  AKO_03          1.339583e+01
## 942  excluded_household_list  AKO_03          1.339583e+01
## 943  excluded_household_list  AKO_03          1.339583e+01
## 944  excluded_household_list  AKO_03          1.339583e+01
## 945  excluded_household_list  AKO_03          1.339583e+01
## 946  excluded_household_list  AKO_03          1.339583e+01
## 947  excluded_household_list  AKO_03          1.339583e+01
## 948  excluded_household_list  AKO_03          1.339583e+01
## 949  excluded_household_list  AKO_03          1.339583e+01
## 950  excluded_household_list  AKO_03          1.339583e+01
## 951  excluded_household_list  AKO_03          1.339583e+01
## 952  excluded_household_list  AKO_03          1.339583e+01
## 953  excluded_household_list  AKO_03          1.339583e+01
## 954  excluded_household_list  AKO_03          1.339583e+01
## 955  excluded_household_list  AKO_03          1.339583e+01
## 956  excluded_household_list  AKO_03          1.339583e+01
## 957  excluded_household_list  AKO_03          1.339583e+01
## 958  excluded_household_list  AKO_03          1.339583e+01
## 959  excluded_household_list  AKO_03          1.339583e+01
## 960  excluded_household_list  AKO_03          1.339583e+01
## 961  excluded_household_list  AKO_03          1.339583e+01
## 962  excluded_household_list  AKO_03          1.339583e+01
## 963  excluded_household_list  AKO_03          1.339583e+01
## 964  excluded_household_list  AKO_03          1.339583e+01
## 965  excluded_household_list  AKO_03          1.339583e+01
## 966  excluded_household_list  AKO_03          1.339583e+01
## 967  excluded_household_list  AKO_03          1.339583e+01
## 968  excluded_household_list  AKO_03          1.339583e+01
## 969  excluded_household_list  AKO_03          1.339583e+01
## 970  excluded_household_list  AKO_03          1.339583e+01
## 971  excluded_household_list  AKO_03          1.339583e+01
## 972  excluded_household_list  AKO_03          1.339583e+01
## 973  excluded_household_list  AKO_03          1.339583e+01
## 974  excluded_household_list  AKO_03          1.339583e+01
## 975  excluded_household_list  AKO_03          1.339583e+01
## 976  excluded_household_list  AKO_03          1.339583e+01
## 977  excluded_household_list  AKO_03          1.207639e+01
## 978  excluded_household_list  AKO_03          1.207639e+01
## 979  excluded_household_list  AKO_03          1.207639e+01
## 980  excluded_household_list  AKO_03          1.207639e+01
## 981  excluded_household_list  AKO_03          1.207639e+01
## 982  excluded_household_list  AKO_03          1.207639e+01
## 983  excluded_household_list  AKO_03          1.207639e+01
## 984  excluded_household_list  AKO_03          1.207639e+01
## 985  excluded_household_list  AKO_03          1.207639e+01
## 986  excluded_household_list  AKO_03          1.207639e+01
## 987  excluded_household_list  AKO_03          1.207639e+01
## 988  excluded_household_list  AKO_03          1.207639e+01
## 989  excluded_household_list  AKO_03          1.207639e+01
## 990  excluded_household_list  AKO_03          1.207639e+01
## 991  excluded_household_list  AKO_03          1.207639e+01
## 992  excluded_household_list  AKO_03          1.207639e+01
## 993  excluded_household_list  AKO_03          1.207639e+01
## 994  excluded_household_list  AKO_03          1.207639e+01
## 995  excluded_household_list  AKO_03          1.207639e+01
## 996  excluded_household_list  AKO_03          1.207639e+01
## 997  excluded_household_list  AKO_03          1.207639e+01
## 998  excluded_household_list  AKO_03          1.207639e+01
## 999  excluded_household_list  AKO_03          1.207639e+01
## 1000 excluded_household_list  AKO_03          1.207639e+01
## 1001 excluded_household_list  AKO_03          1.207639e+01
## 1002 excluded_household_list  AKO_03          1.207639e+01
## 1003 excluded_household_list  AKO_03          1.207639e+01
## 1004 excluded_household_list  AKO_03          1.242361e+01
## 1005 excluded_household_list  AKO_03          1.242361e+01
## 1006 excluded_household_list  AKO_03          1.242361e+01
## 1007 excluded_household_list  AKO_03          1.242361e+01
## 1008 excluded_household_list  AKO_03          1.242361e+01
## 1009 excluded_household_list  AKO_03          1.242361e+01
## 1010 excluded_household_list  AKO_03          1.242361e+01
## 1011 excluded_household_list  AKO_03          1.242361e+01
## 1012 excluded_household_list  AKO_03          1.242361e+01
## 1013 excluded_household_list  AKO_03          1.242361e+01
## 1014 excluded_household_list  AKO_03          1.242361e+01
## 1015 excluded_household_list  AKO_03          1.242361e+01
## 1016 excluded_household_list  AKO_03          1.242361e+01
## 1017 excluded_household_list  AKO_03          1.242361e+01
## 1018 excluded_household_list  AKO_03          1.242361e+01
## 1019 excluded_household_list  AKO_03          1.242361e+01
## 1020 excluded_household_list  AKO_03          1.242361e+01
## 1021 excluded_household_list  AKO_03          1.242361e+01
## 1022 excluded_household_list  AKO_03          1.242361e+01
## 1023 excluded_household_list  AKO_03          1.242361e+01
## 1024 excluded_household_list  AKO_03          1.242361e+01
## 1025 excluded_household_list  AKO_03          1.242361e+01
## 1026 excluded_household_list  AKO_03          1.242361e+01
## 1027 excluded_household_list  AKO_03          1.242361e+01
## 1028 excluded_household_list  AKO_03          1.242361e+01
## 1029 excluded_household_list  AKO_03          1.242361e+01
## 1030 excluded_household_list  AKO_03          1.242361e+01
## 1031 excluded_household_list  AKO_03          1.242361e+01
## 1032 excluded_household_list  AKO_03          1.242361e+01
## 1033 excluded_household_list  AKO_03          1.242361e+01
## 1034 excluded_household_list  AKO_03          1.242361e+01
## 1035 excluded_household_list  AKO_03          1.242361e+01
## 1036 excluded_household_list  AKO_03          1.242361e+01
## 1037 excluded_household_list  AKO_03          1.242361e+01
## 1038 excluded_household_list  AKO_03          1.242361e+01
## 1039 excluded_household_list  AKO_03          1.242361e+01
## 1040 excluded_household_list  AKO_03          1.242361e+01
## 1041 excluded_household_list  AKO_03          1.242361e+01
## 1042 excluded_household_list  AKO_03          1.242361e+01
## 1043 excluded_household_list  AKO_03          1.242361e+01
## 1044 excluded_household_list  AKO_03          1.242361e+01
## 1045 excluded_household_list  AKO_03          1.242361e+01
## 1046 excluded_household_list  AKO_03          1.242361e+01
## 1047 excluded_household_list  AKO_03          1.242361e+01
## 1048 excluded_household_list  AKO_03          1.242361e+01
## 1049 excluded_household_list  AKO_03          1.242361e+01
## 1050 excluded_household_list  AKO_03          1.242361e+01
## 1051 excluded_household_list  AKO_03          1.242361e+01
## 1052 excluded_household_list  AKO_03          2.649306e+01
## 1053 excluded_household_list  AKO_03          2.649306e+01
## 1054 excluded_household_list  AKO_03          2.649306e+01
## 1055 excluded_household_list  AKO_03          2.649306e+01
## 1056 excluded_household_list  AKO_03          2.649306e+01
## 1057 excluded_household_list  AKO_03          2.649306e+01
## 1058 excluded_household_list  AKO_03          2.649306e+01
## 1059 excluded_household_list  AKO_03          2.649306e+01
## 1060 excluded_household_list  AKO_03          2.649306e+01
## 1061 excluded_household_list  AKO_03          2.649306e+01
## 1062 excluded_household_list  AKO_03          2.649306e+01
## 1063 excluded_household_list  AKO_03          2.649306e+01
## 1064 excluded_household_list  AKO_03          2.649306e+01
## 1065 excluded_household_list  AKO_03          2.649306e+01
## 1066 excluded_household_list  AKO_03          2.649306e+01
## 1067 excluded_household_list  AKO_03          2.649306e+01
## 1068 excluded_household_list  AKO_03          2.649306e+01
## 1069 excluded_household_list  AKO_03          2.649306e+01
## 1070 excluded_household_list  AKO_03          2.649306e+01
## 1071 excluded_household_list  AKO_03          2.649306e+01
## 1072 excluded_household_list  AKO_03          2.649306e+01
## 1073 excluded_household_list  AKO_03          2.649306e+01
## 1074 excluded_household_list  AKO_03          2.649306e+01
## 1075 excluded_household_list  AKO_03          2.649306e+01
## 1076 excluded_household_list  AKO_03          2.649306e+01
## 1077 excluded_household_list  AKO_03          2.649306e+01
## 1078 excluded_household_list  AKO_03          2.649306e+01
## 1079 excluded_household_list  AKO_03          2.649306e+01
## 1080 excluded_household_list  AKO_03          2.649306e+01
## 1081 excluded_household_list  AKO_03          2.649306e+01
## 1082 excluded_household_list  AKO_03          2.649306e+01
## 1083 excluded_household_list  AKO_03          2.649306e+01
## 1084 excluded_household_list  AKO_03          2.649306e+01
## 1085 excluded_household_list  AKO_03          2.649306e+01
## 1086 excluded_household_list  AKO_03          2.649306e+01
## 1087 excluded_household_list  AKO_03          2.649306e+01
## 1088 excluded_household_list  AKO_03          2.649306e+01
## 1089 excluded_household_list  AKO_03          2.649306e+01
## 1090 excluded_household_list  AKO_03          2.649306e+01
## 1091 excluded_household_list  AKO_03          2.649306e+01
## 1092 excluded_household_list  AKO_03          2.649306e+01
## 1093 excluded_household_list  AKO_03          2.649306e+01
## 1094 excluded_household_list  AKO_03          2.649306e+01
## 1095 excluded_household_list  AKO_03          2.649306e+01
## 1096 excluded_household_list  AKO_03          2.649306e+01
## 1097 excluded_household_list  AKO_03          2.649306e+01
## 1098 excluded_household_list  AKO_03          2.649306e+01
## 1099 excluded_household_list  AKO_03          2.649306e+01
## 1100 excluded_household_list  AKO_03          2.649306e+01
## 1101 excluded_household_list  AKO_03          2.649306e+01
## 1102 excluded_household_list  AKO_03          2.649306e+01
## 1103 excluded_household_list  AKO_03          2.649306e+01
## 1104 excluded_household_list  AKO_03          2.649306e+01
## 1105 excluded_household_list  AKO_03          2.649306e+01
## 1106 excluded_household_list  AKO_03          2.649306e+01
## 1107 excluded_household_list  AKO_03          2.649306e+01
## 1108 excluded_household_list  AKO_03          2.649306e+01
## 1109 excluded_household_list  AKO_03          2.649306e+01
## 1110 excluded_household_list  AKO_03          2.649306e+01
## 1111 excluded_household_list  AKO_03          2.649306e+01
## 1112 excluded_household_list  AKO_03          2.649306e+01
## 1113 excluded_household_list  AKO_03          2.649306e+01
## 1114 excluded_household_list  AKO_03          2.649306e+01
## 1115 excluded_household_list  AKO_03          2.649306e+01
## 1116 excluded_household_list  AKO_03          2.649306e+01
## 1117 excluded_household_list  AKO_03          2.649306e+01
## 1118 excluded_household_list  AKO_03          2.649306e+01
## 1119 excluded_household_list  AKO_03          2.649306e+01
## 1120 excluded_household_list  AKO_03          2.649306e+01
## 1121 excluded_household_list  AKO_03          2.649306e+01
## 1122 excluded_household_list  AKO_03          2.649306e+01
## 1123 excluded_household_list  AKO_03          2.649306e+01
## 1124 excluded_household_list  AKO_03          2.649306e+01
## 1125 excluded_household_list  AKO_03          2.649306e+01
## 1126 excluded_household_list  AKO_03          2.649306e+01
## 1127 excluded_household_list  AKO_03          2.649306e+01
## 1128 excluded_household_list  AKO_03          2.649306e+01
## 1129 excluded_household_list  AKO_03          2.593056e+01
## 1130 excluded_household_list  AKO_03          2.593056e+01
## 1131 excluded_household_list  AKO_03          2.593056e+01
## 1132 excluded_household_list  AKO_03          2.593056e+01
## 1133 excluded_household_list  AKO_03          2.593056e+01
## 1134 excluded_household_list  AKO_03          2.593056e+01
## 1135 excluded_household_list  AKO_03          2.593056e+01
## 1136 excluded_household_list  AKO_03          2.593056e+01
## 1137 excluded_household_list  AKO_03          2.593056e+01
## 1138 excluded_household_list  AKO_03          2.593056e+01
## 1139 excluded_household_list  AKO_03          2.593056e+01
## 1140 excluded_household_list  AKO_03          2.593056e+01
## 1141 excluded_household_list  AKO_03          2.593056e+01
## 1142 excluded_household_list  AKO_03          2.593056e+01
## 1143 excluded_household_list  AKO_03          2.593056e+01
## 1144 excluded_household_list  AKO_03          2.593056e+01
## 1145 excluded_household_list  AKO_03          2.593056e+01
## 1146 excluded_household_list  AKO_03          2.593056e+01
## 1147 excluded_household_list  AKO_03          2.593056e+01
## 1148 excluded_household_list  AKO_03          2.593056e+01
## 1149 excluded_household_list  AKO_03          2.593056e+01
## 1150 excluded_household_list  AKO_03          2.593056e+01
## 1151 excluded_household_list  AKO_03          2.593056e+01
## 1152 excluded_household_list  AKO_03          2.593056e+01
## 1153 excluded_household_list  AKO_03          2.593056e+01
## 1154 excluded_household_list  AKO_03          2.593056e+01
## 1155 excluded_household_list  AKO_03          2.593056e+01
## 1156 excluded_household_list  AKO_03          2.593056e+01
## 1157 excluded_household_list  AKO_03          2.593056e+01
## 1158 excluded_household_list  AKO_03          2.593056e+01
## 1159 excluded_household_list  AKO_03          2.593056e+01
## 1160 excluded_household_list  AKO_03          2.593056e+01
## 1161 excluded_household_list  AKO_03          2.593056e+01
## 1162 excluded_household_list  AKO_03          2.593056e+01
## 1163 excluded_household_list  AKO_03          2.593056e+01
## 1164 excluded_household_list  AKO_03          2.593056e+01
## 1165 excluded_household_list  AKO_03          2.593056e+01
## 1166 excluded_household_list  AKO_03          2.593056e+01
## 1167 excluded_household_list  AKO_03          2.593056e+01
## 1168 excluded_household_list  AKO_03          2.593056e+01
## 1169 excluded_household_list  AKO_03          2.593056e+01
## 1170 excluded_household_list  AKO_03          2.593056e+01
## 1171 excluded_household_list  AKO_03          2.593056e+01
## 1172 excluded_household_list  AKO_03          2.593056e+01
## 1173 excluded_household_list  AKO_03          2.593056e+01
## 1174 excluded_household_list  AKO_03          2.593056e+01
## 1175 excluded_household_list  AKO_03          2.593056e+01
## 1176 excluded_household_list  AKO_03          2.593056e+01
## 1177 excluded_household_list  AKO_03          2.593056e+01
## 1178 excluded_household_list  AKO_03          2.593056e+01
## 1179 excluded_household_list  AKO_03          2.593056e+01
## 1180 excluded_household_list  AKO_03          2.593056e+01
## 1181 excluded_household_list  AKO_03          2.593056e+01
## 1182 excluded_household_list  AKO_03          2.593056e+01
## 1183 excluded_household_list  AKO_03          2.593056e+01
## 1184 excluded_household_list  AKO_03          2.593056e+01
## 1185 excluded_household_list  AKO_03          2.593056e+01
## 1186 excluded_household_list  AKO_03          2.593056e+01
## 1187 excluded_household_list  AKO_03          2.593056e+01
## 1188 excluded_household_list  AKO_03          2.593056e+01
## 1189 excluded_household_list  AKO_03          2.593056e+01
## 1190 excluded_household_list  AKO_03          2.593056e+01
## 1191 excluded_household_list  AKO_03          2.593056e+01
## 1192 excluded_household_list  AKO_03          2.593056e+01
## 1193 excluded_household_list  AKO_03          2.593056e+01
## 1194 excluded_household_list  AKO_03          2.593056e+01
## 1195 excluded_household_list  AKO_03          2.593056e+01
## 1196 excluded_household_list  AKO_03          2.593056e+01
## 1197 excluded_household_list  AKO_03          2.593056e+01
## 1198 excluded_household_list  AKO_03          2.593056e+01
## 1199 excluded_household_list  AKO_03          8.354167e+00
## 1200 excluded_household_list  AKO_03          8.354167e+00
## 1201 excluded_household_list  AKO_03          8.354167e+00
## 1202 excluded_household_list  AKO_03          8.354167e+00
## 1203 excluded_household_list  AKO_03          8.354167e+00
## 1204 excluded_household_list  AKO_03          8.354167e+00
## 1205 excluded_household_list  AKO_03          8.354167e+00
## 1206 excluded_household_list  AKO_03          8.354167e+00
## 1207 excluded_household_list  AKO_03          8.354167e+00
## 1208 excluded_household_list  AKO_03          8.354167e+00
## 1209 excluded_household_list  AKO_03          8.354167e+00
## 1210 excluded_household_list  AKO_03          8.354167e+00
## 1211 excluded_household_list  AKO_03          8.354167e+00
## 1212 excluded_household_list  AKO_03          8.354167e+00
## 1213 excluded_household_list  AKO_03          8.354167e+00
## 1214 excluded_household_list  AKO_03          8.354167e+00
## 1215 excluded_household_list  AKO_03          8.354167e+00
## 1216 excluded_household_list  AKO_03          8.354167e+00
## 1217 excluded_household_list  AKO_03          8.354167e+00
## 1218 excluded_household_list  AKO_03          8.513889e+00
## 1219 excluded_household_list  AKO_03          8.513889e+00
## 1220 excluded_household_list  AKO_03          8.513889e+00
## 1221 excluded_household_list  AKO_03          8.513889e+00
## 1222 excluded_household_list  AKO_03          8.513889e+00
## 1223 excluded_household_list  AKO_03          8.513889e+00
## 1224 excluded_household_list  AKO_03          8.513889e+00
## 1225 excluded_household_list  AKO_03          8.513889e+00
## 1226 excluded_household_list  AKO_03          8.513889e+00
## 1227 excluded_household_list  AKO_03          8.513889e+00
## 1228 excluded_household_list  AKO_03          8.513889e+00
## 1229 excluded_household_list  AKO_03          8.513889e+00
## 1230 excluded_household_list  AKO_03          8.513889e+00
## 1231 excluded_household_list  AKO_03          8.513889e+00
## 1232 excluded_household_list  AKO_03          8.513889e+00
## 1233 excluded_household_list  AKO_03          8.513889e+00
## 1234 excluded_household_list  AKO_03          8.513889e+00
## 1235 excluded_household_list  AKO_03          8.513889e+00
## 1236 excluded_household_list  AKO_03          8.513889e+00
## 1237 excluded_household_list  AKO_03          8.513889e+00
## 1238 excluded_household_list  AKO_03          8.513889e+00
## 1239 excluded_household_list  AKO_03          8.513889e+00
## 1240 excluded_household_list  AKO_03          8.513889e+00
## 1241 excluded_household_list  AKO_03          8.513889e+00
## 1242 excluded_household_list  AKO_03          8.513889e+00
## 1243 excluded_household_list  AKO_03          8.513889e+00
## 1244 excluded_household_list  AKO_03          8.513889e+00
## 1245 excluded_household_list  AKO_03          8.513889e+00
## 1246 excluded_household_list  AKO_03          8.513889e+00
## 1247 excluded_household_list  AKO_03          8.513889e+00
## 1248 excluded_household_list  AKO_03          8.513889e+00
## 1249 excluded_household_list  AKO_03          8.513889e+00
## 1250 excluded_household_list  AKO_03          8.513889e+00
## 1251 excluded_household_list  AKO_03          8.513889e+00
## 1252 excluded_household_list  AKO_03          8.513889e+00
## 1253 excluded_household_list  AKO_03          8.513889e+00
## 1254 excluded_household_list  AKO_03          2.909514e+02
## 1255 excluded_household_list  AKO_03          2.909514e+02
## 1256 excluded_household_list  AKO_03          2.909514e+02
## 1257 excluded_household_list  AKO_03          2.909514e+02
## 1258 excluded_household_list  AKO_03          2.909514e+02
## 1259 excluded_household_list  AKO_03          2.909514e+02
## 1260 excluded_household_list  AKO_03          2.909514e+02
## 1261 excluded_household_list  AKO_03          2.909514e+02
## 1262 excluded_household_list  AKO_03          2.909514e+02
## 1263 excluded_household_list  AKO_03          2.909514e+02
## 1264 excluded_household_list  AKO_03          2.909514e+02
## 1265 excluded_household_list  AKO_03          2.909514e+02
## 1266 excluded_household_list  AKO_03          2.909514e+02
## 1267 excluded_household_list  AKO_03          2.909514e+02
## 1268 excluded_household_list  AKO_03          2.909514e+02
## 1269 excluded_household_list  AKO_03          2.909514e+02
## 1270 excluded_household_list  AKO_03          2.909514e+02
## 1271 excluded_household_list  AKO_03          2.909514e+02
## 1272 excluded_household_list  AKO_03          2.909514e+02
## 1273 excluded_household_list  AKO_03          2.909514e+02
## 1274 excluded_household_list  AKO_03          2.909514e+02
## 1275 excluded_household_list  AKO_03          2.909514e+02
## 1276 excluded_household_list  AKO_03          2.909514e+02
## 1277 excluded_household_list  AKO_03          2.909514e+02
## 1278 excluded_household_list  AKO_03          2.909514e+02
## 1279 excluded_household_list  AKO_03          2.909514e+02
## 1280 excluded_household_list  AKO_03          2.909514e+02
## 1281 excluded_household_list  AKO_03          2.909514e+02
## 1282 excluded_household_list  AKO_03          2.909514e+02
## 1283 excluded_household_list  AKO_03          2.909514e+02
## 1284 excluded_household_list  AKO_03          2.909514e+02
## 1285 excluded_household_list  AKO_03          2.909514e+02
## 1286 excluded_household_list  AKO_03          2.909514e+02
## 1287 excluded_household_list  AKO_03          2.909514e+02
## 1288 excluded_household_list  AKO_03          2.909514e+02
## 1289 excluded_household_list  AKO_03          2.909514e+02
## 1290 excluded_household_list  AKO_03          2.909514e+02
## 1291 excluded_household_list  AKO_03          2.909514e+02
## 1292 excluded_household_list  AKO_03          2.909514e+02
## 1293 excluded_household_list  AKO_03          2.909514e+02
## 1294 excluded_household_list  AKO_03          2.909514e+02
## 1295 excluded_household_list  AKO_03          2.909514e+02
## 1296 excluded_household_list  AKO_03          2.909514e+02
## 1297 excluded_household_list  AKO_03          2.909514e+02
## 1298 excluded_household_list  AKO_03          2.909514e+02
## 1299 excluded_household_list  AKO_03          2.909514e+02
## 1300 excluded_household_list  AKO_03          2.909514e+02
## 1301 excluded_household_list  AKO_03          2.909514e+02
## 1302 excluded_household_list  AKO_03          2.909514e+02
## 1303 excluded_household_list  AKO_03          2.909514e+02
## 1304 excluded_household_list  AKO_03          2.909514e+02
## 1305 excluded_household_list  AKO_03          2.909514e+02
## 1306 excluded_household_list  AKO_03          2.909514e+02
## 1307 excluded_household_list  AKO_03          2.909514e+02
## 1308 excluded_household_list  AKO_03          2.909514e+02
## 1309 excluded_household_list  AKO_03          2.909514e+02
## 1310 excluded_household_list  AKO_03          2.909514e+02
## 1311 excluded_household_list  AKO_03          2.909514e+02
## 1312 excluded_household_list  AKO_03          2.909514e+02
## 1313 excluded_household_list  AKO_03          2.909514e+02
## 1314 excluded_household_list  AKO_03          2.909514e+02
## 1315 excluded_household_list  AKO_03          2.909514e+02
## 1316 excluded_household_list  AKO_03          2.909514e+02
## 1317 excluded_household_list  AKO_03          2.909514e+02
## 1318 excluded_household_list  AKO_03          2.909514e+02
## 1319 excluded_household_list  AKO_03          2.909514e+02
## 1320 excluded_household_list  AKO_03          2.909514e+02
## 1321 excluded_household_list  AKO_03          2.909514e+02
## 1322 excluded_household_list  AKO_03          2.909514e+02
## 1323 excluded_household_list  AKO_03          2.909514e+02
## 1324 excluded_household_list  AKO_03          2.909514e+02
## 1325 excluded_household_list  AKO_03          2.909514e+02
## 1326 excluded_household_list  AKO_03          2.909514e+02
## 1327 excluded_household_list  AKO_03          2.909514e+02
## 1328 excluded_household_list  AKO_03          2.909514e+02
## 1329 excluded_household_list  AKO_03          2.909514e+02
## 1330 excluded_household_list  AKO_03          2.909514e+02
## 1331 excluded_household_list  AKO_03          2.909514e+02
## 1332 excluded_household_list  AKO_03          2.909514e+02
## 1333 excluded_household_list  AKO_03          2.909514e+02
## 1334 excluded_household_list  AKO_03          2.909514e+02
## 1335 excluded_household_list  AKO_03          2.909514e+02
## 1336 excluded_household_list  AKO_03          2.909514e+02
## 1337 excluded_household_list  AKO_03          2.909514e+02
## 1338 excluded_household_list  AKO_03          2.909514e+02
## 1339 excluded_household_list  AKO_03          2.909514e+02
## 1340 excluded_household_list  AKO_03          2.909514e+02
## 1341 excluded_household_list  AKO_03          2.909514e+02
## 1342 excluded_household_list  AKO_03          2.909514e+02
## 1343 excluded_household_list  AKO_03          2.909514e+02
## 1344 excluded_household_list  AKO_03          2.909514e+02
## 1345 excluded_household_list  AKO_03          2.909514e+02
## 1346 excluded_household_list  AKO_03          2.909514e+02
## 1347 excluded_household_list  AKO_03          2.909514e+02
## 1348 excluded_household_list  AKO_03          2.909514e+02
## 1349 excluded_household_list  AKO_03          2.909514e+02
## 1350 excluded_household_list  AKO_03          2.909514e+02
## 1351 excluded_household_list  AKO_03          2.909514e+02
## 1352 excluded_household_list  AKO_03          2.909514e+02
## 1353 excluded_household_list  AKO_03          2.909514e+02
## 1354 excluded_household_list  AKO_03          2.909514e+02
## 1355 excluded_household_list  AKO_03          2.909514e+02
## 1356 excluded_household_list  AKO_03          2.909514e+02
## 1357 excluded_household_list  AKO_03          2.909514e+02
## 1358 excluded_household_list  AKO_03          2.909514e+02
## 1359 excluded_household_list  AKO_03          2.909514e+02
## 1360 excluded_household_list  AKO_03          2.909514e+02
## 1361 excluded_household_list  AKO_03          2.909514e+02
## 1362 excluded_household_list  AKO_03          2.909514e+02
## 1363 excluded_household_list  AKO_03          2.909514e+02
## 1364 excluded_household_list  AKO_03          2.909514e+02
## 1365 excluded_household_list  AKO_03          2.909514e+02
## 1366 excluded_household_list  AKO_03          2.909514e+02
## 1367 excluded_household_list  AKO_03          2.909514e+02
## 1368 excluded_household_list  AKO_03          2.909514e+02
## 1369 excluded_household_list  AKO_03          2.909514e+02
## 1370 excluded_household_list  AKO_03          2.909514e+02
## 1371 excluded_household_list  AKO_03          2.909514e+02
## 1372 excluded_household_list  AKO_03          2.909514e+02
## 1373 excluded_household_list  AKO_03          2.909514e+02
## 1374 excluded_household_list  AKO_03          2.904583e+02
## 1375 excluded_household_list  AKO_03          2.904583e+02
## 1376 excluded_household_list  AKO_03          2.904583e+02
## 1377 excluded_household_list  AKO_03          2.904583e+02
## 1378 excluded_household_list  AKO_03          2.904583e+02
## 1379 excluded_household_list  AKO_03          2.904583e+02
## 1380 excluded_household_list  AKO_03          2.904583e+02
## 1381 excluded_household_list  AKO_03          2.904583e+02
## 1382 excluded_household_list  AKO_03          2.904583e+02
## 1383 excluded_household_list  AKO_03          2.904583e+02
## 1384 excluded_household_list  AKO_03          2.904583e+02
## 1385 excluded_household_list  AKO_03          2.904583e+02
## 1386 excluded_household_list  AKO_03          2.904583e+02
## 1387 excluded_household_list  AKO_03          2.904583e+02
## 1388 excluded_household_list  AKO_03          2.904583e+02
## 1389 excluded_household_list  AKO_03          2.904583e+02
## 1390 excluded_household_list  AKO_03          2.904583e+02
## 1391 excluded_household_list  AKO_03          2.904583e+02
## 1392 excluded_household_list  AKO_03          2.904583e+02
## 1393 excluded_household_list  AKO_03          2.904583e+02
## 1394 excluded_household_list  AKO_03          2.904583e+02
## 1395 excluded_household_list  AKO_03          2.904583e+02
## 1396 excluded_household_list  AKO_03          2.904583e+02
## 1397 excluded_household_list  AKO_03          2.904583e+02
## 1398 excluded_household_list  AKO_03          2.904583e+02
## 1399 excluded_household_list  AKO_03          2.904583e+02
## 1400 excluded_household_list  AKO_03          2.904583e+02
## 1401 excluded_household_list  AKO_03          2.904583e+02
## 1402 excluded_household_list  AKO_03          2.904583e+02
## 1403 excluded_household_list  AKO_03          2.904583e+02
## 1404 excluded_household_list  AKO_03          2.904583e+02
## 1405 excluded_household_list  AKO_03          2.904583e+02
## 1406 excluded_household_list  AKO_03          2.904583e+02
## 1407 excluded_household_list  AKO_03          2.904583e+02
## 1408 excluded_household_list  AKO_03          2.904583e+02
## 1409 excluded_household_list  AKO_03          2.904583e+02
## 1410 excluded_household_list  AKO_03          2.904583e+02
## 1411 excluded_household_list  AKO_03          2.904583e+02
## 1412 excluded_household_list  AKO_03          2.904583e+02
## 1413 excluded_household_list  AKO_03          2.904583e+02
## 1414 excluded_household_list  AKO_03          2.904583e+02
## 1415 excluded_household_list  AKO_03          2.904583e+02
## 1416 excluded_household_list  AKO_03          2.904583e+02
## 1417 excluded_household_list  AKO_03          2.904583e+02
## 1418 excluded_household_list  AKO_03          2.904583e+02
## 1419 excluded_household_list  AKO_03          2.904583e+02
## 1420 excluded_household_list  AKO_03          2.904583e+02
## 1421 excluded_household_list  AKO_03          2.904583e+02
## 1422 excluded_household_list  AKO_03          2.904583e+02
## 1423 excluded_household_list  AKO_03          2.904583e+02
## 1424 excluded_household_list  AKO_03          2.904583e+02
## 1425 excluded_household_list  AKO_03          2.904583e+02
## 1426 excluded_household_list  AKO_03          2.904583e+02
## 1427 excluded_household_list  AKO_03          2.904583e+02
## 1428 excluded_household_list  AKO_03          2.904583e+02
## 1429 excluded_household_list  AKO_03          2.904583e+02
## 1430 excluded_household_list  AKO_03          2.904583e+02
## 1431 excluded_household_list  AKO_03          2.904583e+02
## 1432 excluded_household_list  AKO_03          2.904583e+02
## 1433 excluded_household_list  AKO_03          2.904583e+02
## 1434 excluded_household_list  AKO_03          2.904583e+02
## 1435 excluded_household_list  AKO_03          2.904583e+02
## 1436 excluded_household_list  AKO_03          2.904583e+02
## 1437 excluded_household_list  AKO_03          9.937500e+00
## 1438 excluded_household_list  AKO_03          9.937500e+00
## 1439 excluded_household_list  AKO_03          9.937500e+00
## 1440 excluded_household_list  AKO_03          9.937500e+00
## 1441 excluded_household_list  AKO_03          9.937500e+00
## 1442 excluded_household_list  AKO_03          9.937500e+00
## 1443 excluded_household_list  AKO_03          9.937500e+00
## 1444 excluded_household_list  AKO_03          9.937500e+00
## 1445 excluded_household_list  AKO_03          9.937500e+00
## 1446 excluded_household_list  AKO_03          9.937500e+00
## 1447 excluded_household_list  AKO_03          9.937500e+00
## 1448 excluded_household_list  AKO_03          9.937500e+00
## 1449 excluded_household_list  AKO_03          9.937500e+00
## 1450 excluded_household_list  AKO_03          9.937500e+00
## 1451 excluded_household_list  AKO_03          9.937500e+00
## 1452 excluded_household_list  AKO_03          9.937500e+00
## 1453 excluded_household_list  AKO_03          9.937500e+00
## 1454 excluded_household_list  AKO_03          9.937500e+00
## 1455 excluded_household_list  AKO_03          9.937500e+00
## 1456 excluded_household_list  AKO_03          9.937500e+00
## 1457 excluded_household_list  AKO_03          9.937500e+00
## 1458 excluded_household_list  AKO_03          9.937500e+00
## 1459 excluded_household_list  AKO_03          9.937500e+00
## 1460 excluded_household_list  AKO_03          9.937500e+00
## 1461 excluded_household_list  AKO_03          9.937500e+00
## 1462 excluded_household_list  AKO_03          9.937500e+00
## 1463 excluded_household_list  AKO_03          9.937500e+00
## 1464 excluded_household_list  AKO_03          9.937500e+00
## 1465 excluded_household_list  AKO_03          9.937500e+00
## 1466 excluded_household_list  AKO_03          9.937500e+00
## 1467 excluded_household_list  AKO_03          9.937500e+00
## 1468 excluded_household_list  AKO_03          9.937500e+00
## 1469 excluded_household_list  AKO_03          9.937500e+00
## 1470 excluded_household_list  AKO_03          9.937500e+00
## 1471 excluded_household_list  AKO_03          9.937500e+00
## 1472 excluded_household_list  AKO_03          9.937500e+00
## 1473 excluded_household_list  AKO_03          9.937500e+00
## 1474 excluded_household_list  AKO_03          9.937500e+00
## 1475 excluded_household_list  AKO_03          9.937500e+00
## 1476 excluded_household_list  AKO_03          9.937500e+00
## 1477 excluded_household_list  AKO_03          8.027778e+00
## 1478 excluded_household_list  AKO_03          8.027778e+00
## 1479 excluded_household_list  AKO_03          8.027778e+00
## 1480 excluded_household_list  AKO_03          8.027778e+00
## 1481 excluded_household_list  AKO_03          8.027778e+00
## 1482 excluded_household_list  AKO_03          8.027778e+00
## 1483 excluded_household_list  AKO_03          8.027778e+00
## 1484 excluded_household_list  AKO_03          8.027778e+00
## 1485 excluded_household_list  AKO_03          8.027778e+00
## 1486 excluded_household_list  AKO_03          8.027778e+00
## 1487 excluded_household_list  AKO_03          8.027778e+00
## 1488 excluded_household_list  AKO_03          8.027778e+00
## 1489                 ambient  AKO_03          1.199306e+01
## 1490 excluded_household_list  AKO_03          1.139583e+01
## 1491 excluded_household_list  AKO_03          1.139583e+01
## 1492 excluded_household_list  AKO_03          1.139583e+01
## 1493 excluded_household_list  AKO_03          1.139583e+01
## 1494 excluded_household_list  AKO_03          1.139583e+01
## 1495 excluded_household_list  AKO_03          1.139583e+01
## 1496 excluded_household_list  AKO_03          1.139583e+01
## 1497 excluded_household_list  AKO_03          1.139583e+01
## 1498 excluded_household_list  AKO_03          1.139583e+01
## 1499 excluded_household_list  AKO_03          1.139583e+01
## 1500 excluded_household_list  AKO_03          1.139583e+01
## 1501 excluded_household_list  AKO_03          1.139583e+01
## 1502 excluded_household_list  AKO_03          1.139583e+01
## 1503 excluded_household_list  AKO_03          1.139583e+01
## 1504 excluded_household_list  AKO_03          1.139583e+01
## 1505 excluded_household_list  AKO_03          1.139583e+01
## 1506 excluded_household_list  AKO_03          1.139583e+01
## 1507 excluded_household_list  AKO_03          1.139583e+01
## 1508 excluded_household_list  AKO_03          1.139583e+01
## 1509 excluded_household_list  AKO_03          1.139583e+01
## 1510 excluded_household_list  AKO_03          1.139583e+01
## 1511 excluded_household_list  AKO_03          1.139583e+01
## 1512 excluded_household_list  AKO_03          1.139583e+01
## 1513 excluded_household_list  AKO_03          1.139583e+01
## 1514 excluded_household_list  AKO_03          1.139583e+01
## 1515 excluded_household_list  AKO_03          1.139583e+01
## 1516 excluded_household_list  AKO_03          6.569444e+00
## 1517 excluded_household_list  AKO_03          6.569444e+00
## 1518 excluded_household_list  AKO_03          6.569444e+00
## 1519 excluded_household_list  AKO_03          6.569444e+00
## 1520 excluded_household_list  AKO_03          6.569444e+00
## 1521 excluded_household_list  AKO_03          6.569444e+00
## 1522 excluded_household_list  AKO_03          6.569444e+00
## 1523 excluded_household_list  AKO_03          6.569444e+00
## 1524 excluded_household_list  AKO_03          6.569444e+00
## 1525 excluded_household_list  AKO_03          6.569444e+00
## 1526 excluded_household_list  AKO_03          6.569444e+00
## 1527 excluded_household_list  AKO_03          6.569444e+00
## 1528 excluded_household_list  AKO_03          6.569444e+00
## 1529 excluded_household_list  AKO_03          6.569444e+00
## 1530 excluded_household_list  AKO_03          6.569444e+00
## 1531 excluded_household_list  AKO_03          6.569444e+00
## 1532 excluded_household_list  AKO_03          1.256944e+00
## 1533 excluded_household_list  AKO_03          1.256944e+00
## 1534 excluded_household_list  AKO_03          1.256944e+00
## 1535 excluded_household_list  AKO_03          1.256944e+00
## 1536 excluded_household_list  AKO_03          1.256944e+00
## 1537 excluded_household_list  AKO_03          1.256944e+00
## 1538 excluded_household_list  AKO_03          3.416667e+00
## 1539 excluded_household_list  AKO_03          3.416667e+00
## 1540 excluded_household_list  AKO_03          3.416667e+00
## 1541 excluded_household_list  AKO_03          3.416667e+00
## 1542 excluded_household_list  AKO_03          3.416667e+00
## 1543 excluded_household_list  AKO_03          3.368056e+00
## 1544 excluded_household_list  AKO_03          3.368056e+00
## 1545 excluded_household_list  AKO_03          3.368056e+00
## 1546 excluded_household_list  AKO_03          3.368056e+00
## 1547 excluded_household_list  AKO_03          3.368056e+00
## 1548 excluded_household_list  AKO_03          3.368056e+00
## 1549 excluded_household_list  AKO_03          3.368056e+00
## 1550 excluded_household_list  AKO_03          3.368056e+00
## 1551 excluded_household_list  AKO_03          3.368056e+00
## 1552 excluded_household_list  AKO_03          3.368056e+00
## 1553 excluded_household_list  AKO_03          3.368056e+00
## 1554 excluded_household_list  AKO_03          3.368056e+00
## 1555 excluded_household_list  AKO_03          3.368056e+00
## 1556 excluded_household_list  AKO_03          3.993056e+00
## 1557 excluded_household_list  AKO_03          3.993056e+00
## 1558 excluded_household_list  AKO_03          3.993056e+00
## 1559 excluded_household_list  AKO_03          3.993056e+00
## 1560 excluded_household_list  AKO_03          3.993056e+00
## 1561 excluded_household_list  AKO_03          3.993056e+00
## 1562 excluded_household_list  AKO_03          3.993056e+00
## 1563 excluded_household_list  AKO_03          3.993056e+00
## 1564 excluded_household_list  AKO_03          3.993056e+00
## 1565 excluded_household_list  AKO_03          3.993056e+00
## 1566 excluded_household_list  AKO_03          3.993056e+00
## 1567 excluded_household_list  AKO_03          3.993056e+00
## 1568 excluded_household_list  AKO_03          3.993056e+00
## 1569                      ok AKO_03B          1.233333e+01
## 1570                      ok AKO_03B          1.233333e+01
## 1571                      ok AKO_03B          1.233333e+01
## 1572                      ok AKO_03B          1.233333e+01
## 1573                      ok AKO_03B          1.233333e+01
## 1574                      ok AKO_03B          1.233333e+01
## 1575                      ok AKO_03B          1.233333e+01
## 1576                      ok AKO_03B          1.233333e+01
## 1577                      ok AKO_03B          1.233333e+01
## 1578                      ok AKO_03B          1.233333e+01
## 1579                      ok AKO_03B          1.233333e+01
## 1580                      ok AKO_03B          1.233333e+01
## 1581                      ok AKO_03B          1.233333e+01
## 1582                      ok AKO_03B          1.233333e+01
## 1583                      ok AKO_03B          1.233333e+01
## 1584                      ok AKO_03B          1.233333e+01
## 1585                      ok AKO_03B          1.233333e+01
## 1586                      ok AKO_03B          1.233333e+01
## 1587                      ok AKO_03B          1.233333e+01
## 1588                      ok AKO_03B          1.233333e+01
## 1589                      ok AKO_03B          1.233333e+01
## 1590                      ok AKO_03B          1.233333e+01
## 1591                      ok AKO_03B          1.233333e+01
## 1592                      ok AKO_03B          1.233333e+01
## 1593                      ok AKO_03B          1.234722e+01
## 1594                      ok AKO_03B          1.234722e+01
## 1595                      ok AKO_03B          1.234722e+01
## 1596                      ok AKO_03B          1.234722e+01
## 1597                      ok AKO_03B          1.234722e+01
## 1598                      ok AKO_03B          1.234722e+01
## 1599                      ok AKO_03B          1.234722e+01
## 1600                      ok AKO_03B          1.234722e+01
## 1601                      ok AKO_03B          1.234722e+01
## 1602                      ok AKO_03B          1.234722e+01
## 1603                      ok AKO_03B          1.234722e+01
## 1604                      ok AKO_03B          1.234722e+01
## 1605                      ok AKO_03B          1.234722e+01
## 1606                      ok AKO_03B          1.234722e+01
## 1607                      ok AKO_03B          1.234722e+01
## 1608                      ok AKO_03B          1.234722e+01
## 1609                      ok AKO_03B          1.234722e+01
## 1610                      ok AKO_03B          1.234722e+01
## 1611                      ok AKO_03B          1.234722e+01
## 1612                      ok AKO_03B          1.234722e+01
## 1613                      ok AKO_03B          1.234722e+01
## 1614                      ok AKO_03B          1.234722e+01
## 1615                      ok AKO_03B          1.234722e+01
## 1616                      ok AKO_03B          1.234722e+01
## 1617                      ok AKO_03B          1.234722e+01
## 1618                      ok AKO_03B          1.234722e+01
## 1619                      ok AKO_03B          1.234722e+01
## 1620                      ok AKO_03B          1.234722e+01
## 1621                      ok AKO_03B          1.234722e+01
## 1622                      ok AKO_03B          1.234722e+01
## 1623                      ok AKO_03B          1.234722e+01
## 1624                      ok AKO_03B          1.234722e+01
## 1625                      ok AKO_03B          1.234722e+01
## 1626                      ok AKO_03B          1.234722e+01
## 1627                      ok AKO_03B          1.234722e+01
## 1628                      ok AKO_03B          1.234722e+01
## 1629                      ok AKO_03B          1.234722e+01
## 1630                      ok AKO_03B          1.234722e+01
## 1631                      ok AKO_03B          1.234722e+01
## 1632                      ok AKO_03B          1.234722e+01
## 1633                      ok AKO_03B          1.234722e+01
## 1634                      ok AKO_03B          1.234722e+01
## 1635                      ok AKO_03B          1.234722e+01
## 1636                      ok AKO_03B          1.234722e+01
## 1637     short_file_duration  AKO_04          6.250000e-02
## 1638     short_file_duration  AKO_04          6.250000e-02
## 1639      excluded_file_list  AKO_04          2.908056e+02
## 1640      excluded_file_list  AKO_04          2.908056e+02
## 1641      excluded_file_list  AKO_04          2.908056e+02
## 1642      excluded_file_list  AKO_04          2.908056e+02
## 1643      excluded_file_list  AKO_04          2.908056e+02
## 1644      excluded_file_list  AKO_04          2.908056e+02
## 1645      excluded_file_list  AKO_04          2.908056e+02
## 1646      excluded_file_list  AKO_04          2.908056e+02
## 1647      excluded_file_list  AKO_04          2.908056e+02
## 1648      excluded_file_list  AKO_04          2.908056e+02
## 1649      excluded_file_list  AKO_04          2.908056e+02
## 1650      excluded_file_list  AKO_04          2.908056e+02
## 1651      excluded_file_list  AKO_04          2.908056e+02
## 1652      excluded_file_list  AKO_04          2.908056e+02
## 1653      excluded_file_list  AKO_04          2.908056e+02
## 1654      excluded_file_list  AKO_04          2.908056e+02
## 1655      excluded_file_list  AKO_04          2.908056e+02
## 1656      excluded_file_list  AKO_04          2.908056e+02
## 1657      excluded_file_list  AKO_04          2.908056e+02
## 1658      excluded_file_list  AKO_04          2.908056e+02
## 1659      excluded_file_list  AKO_04          2.908056e+02
## 1660      excluded_file_list  AKO_04          2.908056e+02
## 1661      excluded_file_list  AKO_04          2.908056e+02
## 1662      excluded_file_list  AKO_04          2.908056e+02
## 1663      excluded_file_list  AKO_04          2.908056e+02
## 1664      excluded_file_list  AKO_04          2.908056e+02
## 1665      excluded_file_list  AKO_04          2.908056e+02
## 1666      excluded_file_list  AKO_04          2.908056e+02
## 1667      excluded_file_list  AKO_04          2.908056e+02
## 1668      excluded_file_list  AKO_04          2.908056e+02
## 1669      excluded_file_list  AKO_04          2.908056e+02
## 1670      excluded_file_list  AKO_04          2.908056e+02
## 1671      excluded_file_list  AKO_04          2.908056e+02
## 1672      excluded_file_list  AKO_04          2.908056e+02
## 1673      excluded_file_list  AKO_04          2.908056e+02
## 1674      excluded_file_list  AKO_04          2.908056e+02
## 1675      excluded_file_list  AKO_04          2.908056e+02
## 1676      excluded_file_list  AKO_04          2.908056e+02
## 1677      excluded_file_list  AKO_04          2.908056e+02
## 1678      excluded_file_list  AKO_04          2.908056e+02
## 1679      excluded_file_list  AKO_04          2.908056e+02
## 1680      excluded_file_list  AKO_04          2.908056e+02
## 1681      excluded_file_list  AKO_04          2.908056e+02
## 1682      excluded_file_list  AKO_04          2.908056e+02
## 1683      excluded_file_list  AKO_04          2.908056e+02
## 1684      excluded_file_list  AKO_04          2.908056e+02
## 1685      excluded_file_list  AKO_04          2.908056e+02
## 1686      excluded_file_list  AKO_04          2.908056e+02
## 1687      excluded_file_list  AKO_04          2.908056e+02
## 1688      excluded_file_list  AKO_04          2.908056e+02
## 1689      excluded_file_list  AKO_04          2.908056e+02
## 1690      excluded_file_list  AKO_04          2.908056e+02
## 1691      excluded_file_list  AKO_04          2.908056e+02
## 1692      excluded_file_list  AKO_04          2.908056e+02
## 1693      excluded_file_list  AKO_04          2.908056e+02
## 1694      excluded_file_list  AKO_04          2.908056e+02
## 1695      excluded_file_list  AKO_04          2.908056e+02
## 1696      excluded_file_list  AKO_04          2.908056e+02
## 1697      excluded_file_list  AKO_04          2.908056e+02
## 1698      excluded_file_list  AKO_04          2.908056e+02
## 1699      excluded_file_list  AKO_04          2.908056e+02
## 1700      excluded_file_list  AKO_04          2.908056e+02
## 1701      excluded_file_list  AKO_04          2.908056e+02
## 1702      excluded_file_list  AKO_04          2.908056e+02
## 1703      excluded_file_list  AKO_04          2.908056e+02
## 1704      excluded_file_list  AKO_04          2.908056e+02
## 1705      excluded_file_list  AKO_04          2.908056e+02
## 1706      excluded_file_list  AKO_04          2.908056e+02
## 1707      excluded_file_list  AKO_04          2.908056e+02
## 1708      excluded_file_list  AKO_04          2.908056e+02
## 1709      excluded_file_list  AKO_04          2.908056e+02
## 1710      excluded_file_list  AKO_04          2.908056e+02
## 1711      excluded_file_list  AKO_04          2.908056e+02
## 1712      excluded_file_list  AKO_04          2.908056e+02
## 1713      excluded_file_list  AKO_04          2.908056e+02
## 1714      excluded_file_list  AKO_04          2.908056e+02
## 1715      excluded_file_list  AKO_04          2.908056e+02
## 1716      excluded_file_list  AKO_04          2.908056e+02
## 1717      excluded_file_list  AKO_04          2.908056e+02
## 1718      excluded_file_list  AKO_04          2.908056e+02
## 1719      excluded_file_list  AKO_04          2.908056e+02
## 1720      excluded_file_list  AKO_04          2.908056e+02
## 1721      excluded_file_list  AKO_04          2.908056e+02
## 1722      excluded_file_list  AKO_04          2.908056e+02
## 1723      excluded_file_list  AKO_04          2.908056e+02
## 1724      excluded_file_list  AKO_04          2.908056e+02
## 1725      excluded_file_list  AKO_04          2.908056e+02
## 1726      excluded_file_list  AKO_04          2.908056e+02
## 1727      excluded_file_list  AKO_04          2.908056e+02
## 1728      excluded_file_list  AKO_04          2.908056e+02
## 1729      excluded_file_list  AKO_04          2.908056e+02
## 1730      excluded_file_list  AKO_04          2.908056e+02
## 1731      excluded_file_list  AKO_04          2.908056e+02
## 1732      excluded_file_list  AKO_04          2.908056e+02
## 1733      excluded_file_list  AKO_04          2.908056e+02
## 1734      excluded_file_list  AKO_04          2.908056e+02
## 1735      excluded_file_list  AKO_04          2.908056e+02
## 1736      excluded_file_list  AKO_04          2.908056e+02
## 1737      excluded_file_list  AKO_04          2.908056e+02
## 1738      excluded_file_list  AKO_04          2.908056e+02
## 1739      excluded_file_list  AKO_04          2.908056e+02
## 1740      excluded_file_list  AKO_04          2.908056e+02
## 1741      excluded_file_list  AKO_04          2.908056e+02
## 1742      excluded_file_list  AKO_04          2.908056e+02
## 1743      excluded_file_list  AKO_04          2.908056e+02
## 1744      excluded_file_list  AKO_04          2.908056e+02
## 1745      excluded_file_list  AKO_04          2.908056e+02
## 1746      excluded_file_list  AKO_04          2.908056e+02
## 1747      excluded_file_list  AKO_04          2.908056e+02
## 1748      excluded_file_list  AKO_04          2.908056e+02
## 1749      excluded_file_list  AKO_04          2.908056e+02
## 1750      excluded_file_list  AKO_04          2.908056e+02
## 1751      excluded_file_list  AKO_04          2.908056e+02
## 1752      excluded_file_list  AKO_04          2.908056e+02
## 1753      excluded_file_list  AKO_04          2.908056e+02
## 1754      excluded_file_list  AKO_04          2.908056e+02
## 1755      excluded_file_list  AKO_04          2.908056e+02
## 1756      excluded_file_list  AKO_04          2.908403e+02
## 1757      excluded_file_list  AKO_04          2.908403e+02
## 1758      excluded_file_list  AKO_04          2.908403e+02
## 1759      excluded_file_list  AKO_04          2.908403e+02
## 1760      excluded_file_list  AKO_04          2.908403e+02
## 1761      excluded_file_list  AKO_04          2.908403e+02
## 1762      excluded_file_list  AKO_04          2.908403e+02
## 1763      excluded_file_list  AKO_04          2.908403e+02
## 1764      excluded_file_list  AKO_04          2.908403e+02
## 1765      excluded_file_list  AKO_04          2.908403e+02
## 1766      excluded_file_list  AKO_04          2.908403e+02
## 1767      excluded_file_list  AKO_04          2.908403e+02
## 1768      excluded_file_list  AKO_04          2.908403e+02
## 1769      excluded_file_list  AKO_04          2.908403e+02
## 1770      excluded_file_list  AKO_04          2.908403e+02
## 1771      excluded_file_list  AKO_04          2.908403e+02
## 1772      excluded_file_list  AKO_04          2.908403e+02
## 1773      excluded_file_list  AKO_04          2.908403e+02
## 1774      excluded_file_list  AKO_04          2.908403e+02
## 1775      excluded_file_list  AKO_04          2.908403e+02
## 1776      excluded_file_list  AKO_04          2.908403e+02
## 1777      excluded_file_list  AKO_04          2.908403e+02
## 1778      excluded_file_list  AKO_04          2.908403e+02
## 1779      excluded_file_list  AKO_04          2.908403e+02
## 1780      excluded_file_list  AKO_04          2.908403e+02
## 1781      excluded_file_list  AKO_04          2.908403e+02
## 1782      excluded_file_list  AKO_04          2.908403e+02
## 1783      excluded_file_list  AKO_04          2.908403e+02
## 1784      excluded_file_list  AKO_04          2.908403e+02
## 1785      excluded_file_list  AKO_04          2.908403e+02
## 1786      excluded_file_list  AKO_04          2.908403e+02
## 1787      excluded_file_list  AKO_04          2.908403e+02
## 1788      excluded_file_list  AKO_04          2.908403e+02
## 1789      excluded_file_list  AKO_04          2.908403e+02
## 1790      excluded_file_list  AKO_04          2.908403e+02
## 1791      excluded_file_list  AKO_04          2.908403e+02
## 1792      excluded_file_list  AKO_04          2.908403e+02
## 1793      excluded_file_list  AKO_04          2.908403e+02
## 1794      excluded_file_list  AKO_04          2.908403e+02
## 1795      excluded_file_list  AKO_04          2.908403e+02
## 1796      excluded_file_list  AKO_04          2.908403e+02
## 1797      excluded_file_list  AKO_04          2.908403e+02
## 1798      excluded_file_list  AKO_04          2.908403e+02
## 1799      excluded_file_list  AKO_04          2.908403e+02
## 1800      excluded_file_list  AKO_04          2.908403e+02
## 1801      excluded_file_list  AKO_04          2.908403e+02
## 1802      excluded_file_list  AKO_04          2.908403e+02
## 1803      excluded_file_list  AKO_04          2.908403e+02
## 1804      excluded_file_list  AKO_04          2.908403e+02
## 1805      excluded_file_list  AKO_04          2.908403e+02
## 1806      excluded_file_list  AKO_04          2.908403e+02
## 1807      excluded_file_list  AKO_04          2.908403e+02
## 1808      excluded_file_list  AKO_04          2.908403e+02
## 1809      excluded_file_list  AKO_04          2.908403e+02
## 1810      excluded_file_list  AKO_04          2.908403e+02
## 1811      excluded_file_list  AKO_04          2.908403e+02
## 1812      excluded_file_list  AKO_04          2.908403e+02
## 1813      excluded_file_list  AKO_04          2.908403e+02
## 1814      excluded_file_list  AKO_04          2.908403e+02
## 1815      excluded_file_list  AKO_04          2.908403e+02
## 1816      excluded_file_list  AKO_04          2.908403e+02
## 1817      excluded_file_list  AKO_04          2.908403e+02
## 1818      excluded_file_list  AKO_04          2.908403e+02
## 1819      excluded_file_list  AKO_04          2.908403e+02
## 1820      excluded_file_list  AKO_04          2.908403e+02
## 1821      excluded_file_list  AKO_04          2.908403e+02
## 1822      excluded_file_list  AKO_04          2.908403e+02
## 1823      excluded_file_list  AKO_04          2.908403e+02
## 1824      excluded_file_list  AKO_04          2.908403e+02
## 1825      excluded_file_list  AKO_04          2.908403e+02
## 1826      excluded_file_list  AKO_04          2.908403e+02
## 1827      excluded_file_list  AKO_04          2.908403e+02
## 1828      excluded_file_list  AKO_04          2.908403e+02
## 1829      excluded_file_list  AKO_04          2.908403e+02
## 1830      excluded_file_list  AKO_04          2.908403e+02
## 1831      excluded_file_list  AKO_04          2.908403e+02
## 1832      excluded_file_list  AKO_04          2.908403e+02
## 1833      excluded_file_list  AKO_04          2.908403e+02
## 1834      excluded_file_list  AKO_04          2.908403e+02
## 1835      excluded_file_list  AKO_04          2.908403e+02
## 1836      excluded_file_list  AKO_04          2.908403e+02
## 1837      excluded_file_list  AKO_04          2.908403e+02
## 1838      excluded_file_list  AKO_04          2.908403e+02
## 1839      excluded_file_list  AKO_04          2.908403e+02
## 1840      excluded_file_list  AKO_04          2.908403e+02
## 1841      excluded_file_list  AKO_04          2.908403e+02
## 1842      excluded_file_list  AKO_04          2.908403e+02
## 1843      excluded_file_list  AKO_04          2.908403e+02
## 1844      excluded_file_list  AKO_04          2.908403e+02
## 1845      excluded_file_list  AKO_04          2.908403e+02
## 1846      excluded_file_list  AKO_04          2.908403e+02
## 1847      excluded_file_list  AKO_04          2.908403e+02
## 1848      excluded_file_list  AKO_04          2.908403e+02
## 1849      excluded_file_list  AKO_04          2.908403e+02
## 1850      excluded_file_list  AKO_04          2.908403e+02
## 1851      excluded_file_list  AKO_04          2.908403e+02
## 1852      excluded_file_list  AKO_04          2.908403e+02
## 1853      excluded_file_list  AKO_04          2.908403e+02
## 1854      excluded_file_list  AKO_04          2.908403e+02
## 1855      excluded_file_list  AKO_04          2.908403e+02
## 1856      excluded_file_list  AKO_04          2.908403e+02
## 1857      excluded_file_list  AKO_04          2.906389e+02
## 1858      excluded_file_list  AKO_04          2.906389e+02
## 1859      excluded_file_list  AKO_04          2.906389e+02
## 1860      excluded_file_list  AKO_04          2.906389e+02
## 1861      excluded_file_list  AKO_04          2.906389e+02
## 1862      excluded_file_list  AKO_04          2.906389e+02
## 1863      excluded_file_list  AKO_04          2.906389e+02
## 1864      excluded_file_list  AKO_04          2.906389e+02
## 1865      excluded_file_list  AKO_04          2.906389e+02
## 1866      excluded_file_list  AKO_04          2.906389e+02
## 1867      excluded_file_list  AKO_04          2.906389e+02
## 1868      excluded_file_list  AKO_04          2.906389e+02
## 1869      excluded_file_list  AKO_04          2.906389e+02
## 1870      excluded_file_list  AKO_04          2.906389e+02
## 1871      excluded_file_list  AKO_04          2.906389e+02
## 1872      excluded_file_list  AKO_04          2.906389e+02
## 1873      excluded_file_list  AKO_04          2.906389e+02
## 1874      excluded_file_list  AKO_04          2.906389e+02
## 1875      excluded_file_list  AKO_04          2.906389e+02
## 1876      excluded_file_list  AKO_04          2.906389e+02
## 1877      excluded_file_list  AKO_04          2.906389e+02
## 1878      excluded_file_list  AKO_04          2.906389e+02
## 1879      excluded_file_list  AKO_04          2.906389e+02
## 1880      excluded_file_list  AKO_04          2.906389e+02
## 1881      excluded_file_list  AKO_04          2.906389e+02
## 1882      excluded_file_list  AKO_04          2.906389e+02
## 1883      excluded_file_list  AKO_04          2.906389e+02
## 1884      excluded_file_list  AKO_04          2.906389e+02
## 1885      excluded_file_list  AKO_04          2.906389e+02
## 1886      excluded_file_list  AKO_04          2.906389e+02
## 1887      excluded_file_list  AKO_04          2.906389e+02
## 1888      excluded_file_list  AKO_04          2.906389e+02
## 1889      excluded_file_list  AKO_04          2.906389e+02
## 1890      excluded_file_list  AKO_04          2.906389e+02
## 1891      excluded_file_list  AKO_04          2.906389e+02
## 1892      excluded_file_list  AKO_04          2.906389e+02
## 1893      excluded_file_list  AKO_04          2.906389e+02
## 1894      excluded_file_list  AKO_04          2.906389e+02
## 1895      excluded_file_list  AKO_04          2.906389e+02
## 1896      excluded_file_list  AKO_04          2.906389e+02
## 1897      excluded_file_list  AKO_04          2.906389e+02
## 1898      excluded_file_list  AKO_04          2.906389e+02
## 1899      excluded_file_list  AKO_04          2.906389e+02
## 1900      excluded_file_list  AKO_04          2.906389e+02
## 1901      excluded_file_list  AKO_04          2.906389e+02
## 1902      excluded_file_list  AKO_04          2.906389e+02
## 1903      excluded_file_list  AKO_04          2.906389e+02
## 1904      excluded_file_list  AKO_04          2.906389e+02
## 1905      excluded_file_list  AKO_04          2.906389e+02
## 1906      excluded_file_list  AKO_04          2.906389e+02
## 1907      excluded_file_list  AKO_04          2.906389e+02
## 1908      excluded_file_list  AKO_04          2.906389e+02
## 1909      excluded_file_list  AKO_04          2.906389e+02
## 1910      excluded_file_list  AKO_04          2.906389e+02
## 1911      excluded_file_list  AKO_04          2.906389e+02
## 1912      excluded_file_list  AKO_04          2.906389e+02
## 1913      excluded_file_list  AKO_04          2.906389e+02
## 1914      excluded_file_list  AKO_04          2.906389e+02
## 1915      excluded_file_list  AKO_04          2.906389e+02
## 1916      excluded_file_list  AKO_04          2.906389e+02
## 1917      excluded_file_list  AKO_04          2.906389e+02
## 1918      excluded_file_list  AKO_04          2.906389e+02
## 1919      excluded_file_list  AKO_04          2.906389e+02
## 1920      excluded_file_list  AKO_04          2.906389e+02
## 1921      excluded_file_list  AKO_04          2.906389e+02
## 1922      excluded_file_list  AKO_04          2.906389e+02
## 1923      excluded_file_list  AKO_04          2.906389e+02
## 1924      excluded_file_list  AKO_04          2.906389e+02
## 1925      excluded_file_list  AKO_04          2.906389e+02
## 1926      excluded_file_list  AKO_04          2.906389e+02
## 1927      excluded_file_list  AKO_04          2.906389e+02
## 1928      excluded_file_list  AKO_04          2.906389e+02
## 1929      excluded_file_list  AKO_04          2.906389e+02
## 1930      excluded_file_list  AKO_04          2.906389e+02
## 1931      excluded_file_list  AKO_04          2.906389e+02
## 1932      excluded_file_list  AKO_04          2.906389e+02
## 1933      excluded_file_list  AKO_04          2.906389e+02
## 1934      excluded_file_list  AKO_04          2.906389e+02
## 1935      excluded_file_list  AKO_04          2.906389e+02
## 1936      excluded_file_list  AKO_04          2.906389e+02
## 1937      excluded_file_list  AKO_04          2.906389e+02
## 1938      excluded_file_list  AKO_04          2.906389e+02
## 1939      excluded_file_list  AKO_04          2.906389e+02
## 1940      excluded_file_list  AKO_04          2.906389e+02
## 1941      excluded_file_list  AKO_04          2.906389e+02
## 1942      excluded_file_list  AKO_04          2.906389e+02
## 1943      excluded_file_list  AKO_04          2.906389e+02
## 1944      excluded_file_list  AKO_04          2.906389e+02
## 1945      excluded_file_list  AKO_04          2.906389e+02
## 1946      excluded_file_list  AKO_04          2.906389e+02
## 1947      excluded_file_list  AKO_04          2.906389e+02
## 1948      excluded_file_list  AKO_04          2.906389e+02
## 1949      excluded_file_list  AKO_04          2.906389e+02
## 1950      excluded_file_list  AKO_04          2.906389e+02
## 1951      excluded_file_list  AKO_04          2.906389e+02
## 1952      excluded_file_list  AKO_04          2.906389e+02
## 1953      excluded_file_list  AKO_04          2.906389e+02
## 1954      excluded_file_list  AKO_04          2.906389e+02
## 1955      excluded_file_list  AKO_04          2.906389e+02
## 1956      excluded_file_list  AKO_04          2.906389e+02
## 1957      excluded_file_list  AKO_04          2.906389e+02
## 1958      excluded_file_list  AKO_04          2.906389e+02
## 1959      excluded_file_list  AKO_04          2.906389e+02
## 1960      excluded_file_list  AKO_04          2.906389e+02
## 1961      excluded_file_list  AKO_04          2.906389e+02
## 1962      excluded_file_list  AKO_04          2.871319e+02
## 1963      excluded_file_list  AKO_04          2.871319e+02
## 1964      excluded_file_list  AKO_04          2.871319e+02
## 1965      excluded_file_list  AKO_04          2.871319e+02
## 1966      excluded_file_list  AKO_04          2.871319e+02
## 1967      excluded_file_list  AKO_04          2.871319e+02
## 1968      excluded_file_list  AKO_04          2.871319e+02
## 1969      excluded_file_list  AKO_04          2.871319e+02
## 1970      excluded_file_list  AKO_04          2.871319e+02
## 1971      excluded_file_list  AKO_04          2.871319e+02
## 1972      excluded_file_list  AKO_04          2.871319e+02
## 1973      excluded_file_list  AKO_04          2.871319e+02
## 1974      excluded_file_list  AKO_04          2.871319e+02
## 1975      excluded_file_list  AKO_04          2.871319e+02
## 1976      excluded_file_list  AKO_04          2.871319e+02
## 1977      excluded_file_list  AKO_04          2.871319e+02
## 1978      excluded_file_list  AKO_04          2.871319e+02
## 1979      excluded_file_list  AKO_04          2.871319e+02
## 1980      excluded_file_list  AKO_04          2.871319e+02
## 1981      excluded_file_list  AKO_04          2.871319e+02
## 1982      excluded_file_list  AKO_04          2.871319e+02
## 1983      excluded_file_list  AKO_04          2.871319e+02
## 1984      excluded_file_list  AKO_04          2.871319e+02
## 1985      excluded_file_list  AKO_04          2.871319e+02
## 1986      excluded_file_list  AKO_04          2.871319e+02
## 1987      excluded_file_list  AKO_04          2.871319e+02
## 1988      excluded_file_list  AKO_04          2.871319e+02
## 1989      excluded_file_list  AKO_04          2.871319e+02
## 1990      excluded_file_list  AKO_04          2.871319e+02
## 1991      excluded_file_list  AKO_04          2.871319e+02
## 1992      excluded_file_list  AKO_04          2.871319e+02
## 1993      excluded_file_list  AKO_04          2.871319e+02
## 1994      excluded_file_list  AKO_04          2.871319e+02
## 1995      excluded_file_list  AKO_04          2.871319e+02
## 1996      excluded_file_list  AKO_04          2.871319e+02
## 1997      excluded_file_list  AKO_04          2.871319e+02
## 1998      excluded_file_list  AKO_04          2.871319e+02
## 1999      excluded_file_list  AKO_04          2.871319e+02
## 2000      excluded_file_list  AKO_04          2.871319e+02
## 2001      excluded_file_list  AKO_04          2.871319e+02
## 2002      excluded_file_list  AKO_04          2.871319e+02
## 2003      excluded_file_list  AKO_04          2.871319e+02
## 2004      excluded_file_list  AKO_04          2.871319e+02
## 2005      excluded_file_list  AKO_04          2.871319e+02
## 2006      excluded_file_list  AKO_04          2.871319e+02
## 2007      excluded_file_list  AKO_04          2.871319e+02
## 2008      excluded_file_list  AKO_04          2.871319e+02
## 2009      excluded_file_list  AKO_04          2.871319e+02
## 2010      excluded_file_list  AKO_04          2.871319e+02
## 2011      excluded_file_list  AKO_04          2.871319e+02
## 2012      excluded_file_list  AKO_04          2.871319e+02
## 2013      excluded_file_list  AKO_04          2.871319e+02
## 2014      excluded_file_list  AKO_04          2.871319e+02
## 2015      excluded_file_list  AKO_04          2.871319e+02
## 2016      excluded_file_list  AKO_04          2.871319e+02
## 2017      excluded_file_list  AKO_04          2.871319e+02
## 2018      excluded_file_list  AKO_04          2.871319e+02
## 2019      excluded_file_list  AKO_04          2.871319e+02
## 2020      excluded_file_list  AKO_04          2.871319e+02
## 2021      excluded_file_list  AKO_04          2.871319e+02
## 2022      excluded_file_list  AKO_04          2.871319e+02
## 2023      excluded_file_list  AKO_04          2.871319e+02
## 2024      excluded_file_list  AKO_04          2.871319e+02
## 2025      excluded_file_list  AKO_04          2.871319e+02
## 2026      excluded_file_list  AKO_04          2.871319e+02
## 2027      excluded_file_list  AKO_04          2.871319e+02
## 2028      excluded_file_list  AKO_04          2.871319e+02
## 2029      excluded_file_list  AKO_04          2.871319e+02
## 2030      excluded_file_list  AKO_04          2.871319e+02
## 2031      excluded_file_list  AKO_04          2.871319e+02
## 2032      excluded_file_list  AKO_04          2.871319e+02
## 2033      excluded_file_list  AKO_04          2.871319e+02
## 2034      excluded_file_list  AKO_04          2.871319e+02
## 2035      excluded_file_list  AKO_04          2.871319e+02
## 2036      excluded_file_list  AKO_04          2.871319e+02
## 2037      excluded_file_list  AKO_04          2.871319e+02
## 2038      excluded_file_list  AKO_04          2.871319e+02
## 2039      excluded_file_list  AKO_04          2.871319e+02
## 2040      excluded_file_list  AKO_04          2.871319e+02
## 2041      excluded_file_list  AKO_04          2.871319e+02
## 2042      excluded_file_list  AKO_04          2.871319e+02
## 2043      excluded_file_list  AKO_04          2.871319e+02
## 2044      excluded_file_list  AKO_04          2.871319e+02
## 2045      excluded_file_list  AKO_04          2.871319e+02
## 2046      excluded_file_list  AKO_04          2.871319e+02
## 2047      excluded_file_list  AKO_04          2.871319e+02
## 2048      excluded_file_list  AKO_04          2.871319e+02
## 2049      excluded_file_list  AKO_04          2.871319e+02
## 2050      excluded_file_list  AKO_04          2.871319e+02
## 2051      excluded_file_list  AKO_04          2.871319e+02
## 2052      excluded_file_list  AKO_04          2.871319e+02
## 2053      excluded_file_list  AKO_04          2.871319e+02
## 2054      excluded_file_list  AKO_04          2.871319e+02
## 2055      excluded_file_list  AKO_04          2.871319e+02
## 2056      excluded_file_list  AKO_04          2.871319e+02
## 2057      excluded_file_list  AKO_04          2.871319e+02
## 2058      excluded_file_list  AKO_04          2.871319e+02
## 2059      excluded_file_list  AKO_04          2.871319e+02
## 2060      excluded_file_list  AKO_04          2.871319e+02
## 2061      excluded_file_list  AKO_04          2.871319e+02
## 2062      excluded_file_list  AKO_04          2.871319e+02
## 2063      excluded_file_list  AKO_04          2.871319e+02
## 2064      excluded_file_list  AKO_04          2.871319e+02
## 2065      excluded_file_list  AKO_04          2.871319e+02
## 2066      excluded_file_list  AKO_04          2.871319e+02
## 2067      excluded_file_list  AKO_04          2.871319e+02
## 2068      excluded_file_list  AKO_04          2.871319e+02
## 2069      excluded_file_list  AKO_04          2.871319e+02
## 2070      excluded_file_list  AKO_04          2.871319e+02
## 2071      excluded_file_list  AKO_04          2.871319e+02
## 2072      excluded_file_list  AKO_04          2.871319e+02
## 2073      excluded_file_list  AKO_04          2.871319e+02
## 2074      excluded_file_list  AKO_04          2.871319e+02
## 2075      excluded_file_list  AKO_04          2.871319e+02
## 2076      excluded_file_list  AKO_04          2.871319e+02
## 2077      excluded_file_list  AKO_04          2.871319e+02
## 2078      excluded_file_list  AKO_04          2.871319e+02
## 2079      excluded_file_list  AKO_04          2.871319e+02
## 2080      excluded_file_list  AKO_04          2.871319e+02
## 2081      excluded_file_list  AKO_04          2.871319e+02
## 2082      excluded_file_list  AKO_04          2.871319e+02
## 2083      excluded_file_list  AKO_04          2.871319e+02
## 2084      excluded_file_list  AKO_04          2.871319e+02
## 2085      excluded_file_list  AKO_04          2.871319e+02
## 2086      excluded_file_list  AKO_04          2.871319e+02
## 2087      excluded_file_list  AKO_04          2.871319e+02
## 2088      excluded_file_list  AKO_04          2.871319e+02
## 2089      excluded_file_list  AKO_04          2.871319e+02
## 2090      excluded_file_list  AKO_04          2.871319e+02
## 2091      excluded_file_list  AKO_04          2.871319e+02
## 2092      excluded_file_list  AKO_04          2.871319e+02
## 2093      excluded_file_list  AKO_04          2.871319e+02
## 2094      excluded_file_list  AKO_04          2.871319e+02
## 2095      excluded_file_list  AKO_04          2.871319e+02
## 2096      excluded_file_list  AKO_04          2.871319e+02
## 2097      excluded_file_list  AKO_04          2.871319e+02
## 2098      excluded_file_list  AKO_04          2.871319e+02
## 2099      excluded_file_list  AKO_04          2.871319e+02
## 2100      excluded_file_list  AKO_04          2.871319e+02
## 2101      excluded_file_list  AKO_04          2.871319e+02
## 2102      excluded_file_list  AKO_04          2.871319e+02
## 2103      excluded_file_list  AKO_04          2.871319e+02
## 2104      excluded_file_list  AKO_04          2.871319e+02
## 2105      excluded_file_list  AKO_04          2.871319e+02
## 2106      excluded_file_list  AKO_04          2.871319e+02
## 2107      excluded_file_list  AKO_04          2.871319e+02
## 2108      excluded_file_list  AKO_04          2.871319e+02
## 2109      excluded_file_list  AKO_04          2.871319e+02
## 2110      excluded_file_list  AKO_04          2.871319e+02
## 2111      excluded_file_list  AKO_04          2.871319e+02
## 2112      excluded_file_list  AKO_04          2.871319e+02
## 2113      excluded_file_list  AKO_04          2.871319e+02
## 2114      excluded_file_list  AKO_04          2.871319e+02
## 2115      excluded_file_list  AKO_04          2.871319e+02
## 2116      excluded_file_list  AKO_04          2.871319e+02
## 2117      excluded_file_list  AKO_04          2.871319e+02
## 2118      excluded_file_list  AKO_04          2.871319e+02
## 2119      excluded_file_list  AKO_04          2.871319e+02
## 2120      excluded_file_list  AKO_04          2.871319e+02
## 2121      excluded_file_list  AKO_04          2.871319e+02
## 2122      excluded_file_list  AKO_04          2.871319e+02
## 2123      excluded_file_list  AKO_04          2.871319e+02
## 2124      excluded_file_list  AKO_04          2.871319e+02
## 2125      excluded_file_list  AKO_04          2.871597e+02
## 2126      excluded_file_list  AKO_04          2.871597e+02
## 2127      excluded_file_list  AKO_04          2.871597e+02
## 2128      excluded_file_list  AKO_04          2.871597e+02
## 2129      excluded_file_list  AKO_04          2.871597e+02
## 2130      excluded_file_list  AKO_04          2.871597e+02
## 2131      excluded_file_list  AKO_04          2.871597e+02
## 2132      excluded_file_list  AKO_04          2.871597e+02
## 2133      excluded_file_list  AKO_04          2.871597e+02
## 2134      excluded_file_list  AKO_04          2.871597e+02
## 2135      excluded_file_list  AKO_04          2.871597e+02
## 2136      excluded_file_list  AKO_04          2.871597e+02
## 2137      excluded_file_list  AKO_04          2.871597e+02
## 2138      excluded_file_list  AKO_04          2.871597e+02
## 2139      excluded_file_list  AKO_04          2.871597e+02
## 2140      excluded_file_list  AKO_04          2.871597e+02
## 2141      excluded_file_list  AKO_04          2.871597e+02
## 2142      excluded_file_list  AKO_04          2.871597e+02
## 2143      excluded_file_list  AKO_04          2.871597e+02
## 2144      excluded_file_list  AKO_04          2.871597e+02
## 2145      excluded_file_list  AKO_04          2.871597e+02
## 2146      excluded_file_list  AKO_04          2.871597e+02
## 2147      excluded_file_list  AKO_04          2.871597e+02
## 2148      excluded_file_list  AKO_04          2.871597e+02
## 2149      excluded_file_list  AKO_04          2.871597e+02
## 2150      excluded_file_list  AKO_04          2.871597e+02
## 2151      excluded_file_list  AKO_04          2.871597e+02
## 2152      excluded_file_list  AKO_04          2.871597e+02
## 2153      excluded_file_list  AKO_04          2.871597e+02
## 2154      excluded_file_list  AKO_04          2.871597e+02
## 2155      excluded_file_list  AKO_04          2.871597e+02
## 2156      excluded_file_list  AKO_04          2.871597e+02
## 2157      excluded_file_list  AKO_04          2.871597e+02
## 2158      excluded_file_list  AKO_04          2.871597e+02
## 2159      excluded_file_list  AKO_04          2.871597e+02
## 2160      excluded_file_list  AKO_04          2.871597e+02
## 2161      excluded_file_list  AKO_04          2.871597e+02
## 2162      excluded_file_list  AKO_04          2.871597e+02
## 2163      excluded_file_list  AKO_04          2.871597e+02
## 2164      excluded_file_list  AKO_04          2.871597e+02
## 2165      excluded_file_list  AKO_04          2.871597e+02
## 2166      excluded_file_list  AKO_04          2.871597e+02
## 2167      excluded_file_list  AKO_04          2.871597e+02
## 2168      excluded_file_list  AKO_04          2.871597e+02
## 2169      excluded_file_list  AKO_04          2.871597e+02
## 2170      excluded_file_list  AKO_04          2.871597e+02
## 2171      excluded_file_list  AKO_04          2.871597e+02
## 2172      excluded_file_list  AKO_04          2.871597e+02
## 2173      excluded_file_list  AKO_04          2.871597e+02
## 2174      excluded_file_list  AKO_04          2.871597e+02
## 2175      excluded_file_list  AKO_04          2.871597e+02
## 2176      excluded_file_list  AKO_04          2.871597e+02
## 2177      excluded_file_list  AKO_04          2.871597e+02
## 2178      excluded_file_list  AKO_04          2.871597e+02
## 2179      excluded_file_list  AKO_04          2.871597e+02
## 2180      excluded_file_list  AKO_04          2.871597e+02
## 2181      excluded_file_list  AKO_04          2.871597e+02
## 2182      excluded_file_list  AKO_04          2.871597e+02
## 2183      excluded_file_list  AKO_04          2.871597e+02
## 2184      excluded_file_list  AKO_04          2.871597e+02
## 2185      excluded_file_list  AKO_04          2.871597e+02
## 2186      excluded_file_list  AKO_04          2.871597e+02
## 2187      excluded_file_list  AKO_04          2.871597e+02
## 2188      excluded_file_list  AKO_04          2.871597e+02
## 2189      excluded_file_list  AKO_04          2.871597e+02
## 2190      excluded_file_list  AKO_04          2.871597e+02
## 2191      excluded_file_list  AKO_04          2.871597e+02
## 2192      excluded_file_list  AKO_04          2.871597e+02
## 2193      excluded_file_list  AKO_04          2.871597e+02
## 2194      excluded_file_list  AKO_04          2.871597e+02
## 2195      excluded_file_list  AKO_04          2.871597e+02
## 2196      excluded_file_list  AKO_04          2.871597e+02
## 2197      excluded_file_list  AKO_04          2.871597e+02
## 2198      excluded_file_list  AKO_04          2.871597e+02
## 2199      excluded_file_list  AKO_04          2.871597e+02
## 2200      excluded_file_list  AKO_04          2.871597e+02
## 2201      excluded_file_list  AKO_04          2.871597e+02
## 2202      excluded_file_list  AKO_04          2.871597e+02
## 2203      excluded_file_list  AKO_04          2.871597e+02
## 2204      excluded_file_list  AKO_04          2.871597e+02
## 2205      excluded_file_list  AKO_04          2.871597e+02
## 2206      excluded_file_list  AKO_04          2.871597e+02
## 2207      excluded_file_list  AKO_04          2.871597e+02
## 2208      excluded_file_list  AKO_04          2.871597e+02
## 2209      excluded_file_list  AKO_04          2.871597e+02
## 2210      excluded_file_list  AKO_04          2.871597e+02
## 2211      excluded_file_list  AKO_04          2.871597e+02
## 2212      excluded_file_list  AKO_04          2.871597e+02
## 2213      excluded_file_list  AKO_04          2.871597e+02
## 2214      excluded_file_list  AKO_04          2.871597e+02
## 2215      excluded_file_list  AKO_04          2.871597e+02
## 2216      excluded_file_list  AKO_04          2.871597e+02
## 2217      excluded_file_list  AKO_04          2.871597e+02
## 2218      excluded_file_list  AKO_04          2.871597e+02
## 2219      excluded_file_list  AKO_04          2.871597e+02
## 2220      excluded_file_list  AKO_04          2.871597e+02
## 2221      excluded_file_list  AKO_04          2.871597e+02
## 2222      excluded_file_list  AKO_04          2.871597e+02
## 2223      excluded_file_list  AKO_04          2.871597e+02
## 2224      excluded_file_list  AKO_04          2.871597e+02
## 2225      excluded_file_list  AKO_04          2.871597e+02
## 2226      excluded_file_list  AKO_04          2.871597e+02
## 2227      excluded_file_list  AKO_04          2.871597e+02
## 2228      excluded_file_list  AKO_04          2.871597e+02
## 2229      excluded_file_list  AKO_04          2.871597e+02
## 2230      excluded_file_list  AKO_04          2.871597e+02
## 2231      excluded_file_list  AKO_04          2.871597e+02
## 2232      excluded_file_list  AKO_04          2.871597e+02
## 2233      excluded_file_list  AKO_04          2.871597e+02
## 2234      excluded_file_list  AKO_04          2.871597e+02
## 2235      excluded_file_list  AKO_04          2.871597e+02
## 2236      excluded_file_list  AKO_04          2.871597e+02
## 2237      excluded_file_list  AKO_04          2.871597e+02
## 2238      excluded_file_list  AKO_04          2.871597e+02
## 2239      excluded_file_list  AKO_04          2.871597e+02
## 2240      excluded_file_list  AKO_04          2.871597e+02
## 2241      excluded_file_list  AKO_04          2.871597e+02
## 2242      excluded_file_list  AKO_04          2.871597e+02
## 2243      excluded_file_list  AKO_04          2.871597e+02
## 2244      excluded_file_list  AKO_04          2.871597e+02
## 2245      excluded_file_list  AKO_04          2.871597e+02
## 2246      excluded_file_list  AKO_04          2.871597e+02
## 2247      excluded_file_list  AKO_04          2.871597e+02
## 2248      excluded_file_list  AKO_04          2.871597e+02
## 2249      excluded_file_list  AKO_04          2.871597e+02
## 2250      excluded_file_list  AKO_04          2.871597e+02
## 2251      excluded_file_list  AKO_04          2.871597e+02
## 2252      excluded_file_list  AKO_04          2.871597e+02
## 2253      excluded_file_list  AKO_04          2.871597e+02
## 2254      excluded_file_list  AKO_04          2.871597e+02
## 2255      excluded_file_list  AKO_04          2.871597e+02
## 2256      excluded_file_list  AKO_04          2.871597e+02
## 2257      excluded_file_list  AKO_04          2.871597e+02
## 2258      excluded_file_list  AKO_04          2.871597e+02
## 2259      excluded_file_list  AKO_04          2.871597e+02
## 2260      excluded_file_list  AKO_04          2.871597e+02
## 2261      excluded_file_list  AKO_04          2.871597e+02
## 2262      excluded_file_list  AKO_04          2.871597e+02
## 2263      excluded_file_list  AKO_04          2.871597e+02
## 2264      excluded_file_list  AKO_04          2.871597e+02
## 2265      excluded_file_list  AKO_04          2.871597e+02
## 2266      excluded_file_list  AKO_04          2.871597e+02
## 2267      excluded_file_list  AKO_04          2.871597e+02
## 2268      excluded_file_list  AKO_04          2.871597e+02
## 2269      excluded_file_list  AKO_04          2.871597e+02
## 2270      excluded_file_list  AKO_04          2.871597e+02
## 2271      excluded_file_list  AKO_04          2.871597e+02
## 2272      excluded_file_list  AKO_04          2.871597e+02
## 2273      excluded_file_list  AKO_04          2.871597e+02
## 2274      excluded_file_list  AKO_04          2.871597e+02
## 2275      excluded_file_list  AKO_04          2.871597e+02
## 2276      excluded_file_list  AKO_04          2.871597e+02
## 2277      excluded_file_list  AKO_04          2.871597e+02
## 2278      excluded_file_list  AKO_04          2.871597e+02
## 2279      excluded_file_list  AKO_04          2.871597e+02
## 2280      excluded_file_list  AKO_04          2.871597e+02
## 2281      excluded_file_list  AKO_04          2.871597e+02
## 2282      excluded_file_list  AKO_04          2.871597e+02
## 2283      excluded_file_list  AKO_04          2.871597e+02
## 2284      excluded_file_list  AKO_04          2.871597e+02
## 2285      excluded_file_list  AKO_04          2.871597e+02
## 2286      excluded_file_list  AKO_04          2.871597e+02
## 2287      excluded_file_list  AKO_04          2.871597e+02
## 2288      excluded_file_list  AKO_04          2.871597e+02
## 2289      excluded_file_list  AKO_04          2.871597e+02
## 2290      excluded_file_list  AKO_04          2.871597e+02
## 2291      excluded_file_list  AKO_04          2.871597e+02
## 2292      excluded_file_list  AKO_04          2.871597e+02
## 2293      excluded_file_list  AKO_04          2.871597e+02
## 2294      excluded_file_list  AKO_04          2.871597e+02
## 2295      excluded_file_list  AKO_04          2.871597e+02
## 2296      excluded_file_list  AKO_04          2.871597e+02
## 2297      excluded_file_list  AKO_04          2.871597e+02
## 2298      excluded_file_list  AKO_04          2.871597e+02
## 2299      excluded_file_list  AKO_04          2.871597e+02
## 2300      excluded_file_list  AKO_04          2.871597e+02
## 2301      excluded_file_list  AKO_04          2.871597e+02
## 2302      excluded_file_list  AKO_04          2.871597e+02
## 2303      excluded_file_list  AKO_04          2.871597e+02
## 2304      excluded_file_list  AKO_04          2.871597e+02
## 2305      excluded_file_list  AKO_04          2.871597e+02
## 2306      excluded_file_list  AKO_04          2.871597e+02
## 2307      excluded_file_list  AKO_04          2.871597e+02
## 2308      excluded_file_list  AKO_04          2.871597e+02
## 2309      excluded_file_list  AKO_04          2.871597e+02
## 2310      excluded_file_list  AKO_04          2.871597e+02
## 2311      excluded_file_list  AKO_04          2.871597e+02
## 2312      excluded_file_list  AKO_04          2.871597e+02
## 2313      excluded_file_list  AKO_04          2.871597e+02
## 2314      excluded_file_list  AKO_04          2.871597e+02
## 2315      excluded_file_list  AKO_04          2.871597e+02
## 2316      excluded_file_list  AKO_04          2.871597e+02
## 2317      excluded_file_list  AKO_04          2.871597e+02
## 2318      excluded_file_list  AKO_04          2.871597e+02
## 2319      excluded_file_list  AKO_04          2.871597e+02
## 2320      excluded_file_list  AKO_04          2.871597e+02
## 2321      excluded_file_list  AKO_04          2.871597e+02
## 2322      excluded_file_list  AKO_04          2.871597e+02
## 2323      excluded_file_list  AKO_04          2.871597e+02
## 2324      excluded_file_list  AKO_04          2.871597e+02
## 2325      excluded_file_list  AKO_04          2.871597e+02
## 2326      excluded_file_list  AKO_04          2.871597e+02
## 2327      excluded_file_list  AKO_04          2.871597e+02
## 2328      excluded_file_list  AKO_04          2.871597e+02
## 2329      excluded_file_list  AKO_04          2.871597e+02
## 2330      excluded_file_list  AKO_04          2.871597e+02
## 2331      excluded_file_list  AKO_04          2.871597e+02
## 2332      excluded_file_list  AKO_04          2.871597e+02
## 2333      excluded_file_list  AKO_04          2.871597e+02
## 2334      excluded_file_list  AKO_04          2.871597e+02
## 2335      excluded_file_list  AKO_04          2.871597e+02
## 2336      excluded_file_list  AKO_04          2.871597e+02
## 2337      excluded_file_list  AKO_04          2.871597e+02
## 2338      excluded_file_list  AKO_04          2.871597e+02
## 2339      excluded_file_list  AKO_04          2.871597e+02
## 2340      excluded_file_list  AKO_04          2.871597e+02
## 2341      excluded_file_list  AKO_04          2.871597e+02
## 2342      excluded_file_list  AKO_04          2.871597e+02
## 2343      excluded_file_list  AKO_04          2.871597e+02
## 2344      excluded_file_list  AKO_04          2.871597e+02
## 2345      excluded_file_list  AKO_04          2.871597e+02
## 2346      excluded_file_list  AKO_04          2.871597e+02
## 2347      excluded_file_list  AKO_04          2.871597e+02
## 2348      excluded_file_list  AKO_04          2.871597e+02
## 2349      excluded_file_list  AKO_04          2.871597e+02
## 2350      excluded_file_list  AKO_04          2.871597e+02
## 2351      excluded_file_list  AKO_04          2.871597e+02
## 2352      excluded_file_list  AKO_04          2.871597e+02
## 2353      excluded_file_list  AKO_04          2.871597e+02
## 2354      excluded_file_list  AKO_04          2.871597e+02
## 2355      excluded_file_list  AKO_04          2.871597e+02
## 2356      excluded_file_list  AKO_04          2.871597e+02
## 2357      excluded_file_list  AKO_04          2.871597e+02
## 2358      excluded_file_list  AKO_04          2.871597e+02
## 2359      excluded_file_list  AKO_04          2.871597e+02
## 2360      excluded_file_list  AKO_04          2.871597e+02
## 2361      excluded_file_list  AKO_04          2.871597e+02
## 2362      excluded_file_list  AKO_04          2.871597e+02
## 2363      excluded_file_list  AKO_04          2.871597e+02
## 2364      excluded_file_list  AKO_04          2.871597e+02
## 2365      excluded_file_list  AKO_04          2.871597e+02
## 2366      excluded_file_list  AKO_04          2.871597e+02
## 2367      excluded_file_list  AKO_04          2.871597e+02
## 2368      excluded_file_list  AKO_04          2.871597e+02
## 2369      excluded_file_list  AKO_04          2.871597e+02
## 2370      excluded_file_list  AKO_04          2.871597e+02
## 2371      excluded_file_list  AKO_04          2.871597e+02
## 2372      excluded_file_list  AKO_04          2.871597e+02
## 2373      excluded_file_list  AKO_04          2.871597e+02
## 2374      excluded_file_list  AKO_04          2.871597e+02
## 2375      excluded_file_list  AKO_04          2.871597e+02
## 2376      excluded_file_list  AKO_04          2.871597e+02
## 2377      excluded_file_list  AKO_04          2.871597e+02
## 2378      excluded_file_list  AKO_04          2.871597e+02
## 2379      excluded_file_list  AKO_04          2.871597e+02
## 2380      excluded_file_list  AKO_04          2.871597e+02
## 2381      excluded_file_list  AKO_04          2.871597e+02
## 2382      excluded_file_list  AKO_04          2.871597e+02
## 2383      excluded_file_list  AKO_04          2.871597e+02
## 2384      excluded_file_list  AKO_04          2.871597e+02
## 2385      excluded_file_list  AKO_04          2.871597e+02
## 2386      excluded_file_list  AKO_04          2.871597e+02
## 2387      excluded_file_list  AKO_04          2.871597e+02
## 2388      excluded_file_list  AKO_04          2.871597e+02
## 2389      excluded_file_list  AKO_04          2.871597e+02
## 2390      excluded_file_list  AKO_04          2.871597e+02
## 2391      excluded_file_list  AKO_04          2.871597e+02
## 2392      excluded_file_list  AKO_04          2.871597e+02
## 2393      excluded_file_list  AKO_04          2.871597e+02
## 2394      excluded_file_list  AKO_04          2.871597e+02
## 2395      excluded_file_list  AKO_04          2.871597e+02
## 2396      excluded_file_list  AKO_04          2.871597e+02
## 2397      excluded_file_list  AKO_04          2.871597e+02
## 2398      excluded_file_list  AKO_04          2.871597e+02
## 2399      excluded_file_list  AKO_04          2.871597e+02
## 2400      excluded_file_list  AKO_04          2.871597e+02
## 2401      excluded_file_list  AKO_04          2.871597e+02
## 2402      excluded_file_list  AKO_04          2.871597e+02
## 2403      excluded_file_list  AKO_04          2.871597e+02
## 2404      excluded_file_list  AKO_04          2.871597e+02
## 2405      excluded_file_list  AKO_04          2.871597e+02
## 2406      excluded_file_list  AKO_04          2.871597e+02
## 2407      excluded_file_list  AKO_04          2.871597e+02
## 2408      excluded_file_list  AKO_04          2.871597e+02
## 2409      excluded_file_list  AKO_04          2.871597e+02
## 2410      excluded_file_list  AKO_04          2.871597e+02
## 2411      excluded_file_list  AKO_04          2.871597e+02
## 2412      excluded_file_list  AKO_04          2.871597e+02
## 2413      excluded_file_list  AKO_04          2.871597e+02
## 2414      excluded_file_list  AKO_04          2.871597e+02
## 2415      excluded_file_list  AKO_04          2.871597e+02
## 2416      excluded_file_list  AKO_04          2.871597e+02
## 2417      excluded_file_list  AKO_04          2.871597e+02
## 2418      excluded_file_list  AKO_04          2.871597e+02
## 2419      excluded_file_list  AKO_04          2.871597e+02
## 2420      excluded_file_list  AKO_04          2.871597e+02
## 2421      excluded_file_list  AKO_04          2.871597e+02
## 2422      excluded_file_list  AKO_04          2.871597e+02
## 2423      excluded_file_list  AKO_04          2.871597e+02
## 2424      excluded_file_list  AKO_04          2.871597e+02
## 2425      excluded_file_list  AKO_04          2.871597e+02
## 2426      excluded_file_list  AKO_04          2.871597e+02
## 2427      excluded_file_list  AKO_04          2.871597e+02
## 2428      excluded_file_list  AKO_04          2.871597e+02
## 2429      excluded_file_list  AKO_04          2.871597e+02
## 2430      excluded_file_list  AKO_04          2.871597e+02
## 2431      excluded_file_list  AKO_04          2.871597e+02
## 2432      excluded_file_list  AKO_04          2.871597e+02
## 2433      excluded_file_list  AKO_04          2.871597e+02
## 2434      excluded_file_list  AKO_04          2.871597e+02
## 2435      excluded_file_list  AKO_04          2.871597e+02
## 2436      excluded_file_list  AKO_04          2.871597e+02
## 2437      excluded_file_list  AKO_04          2.871597e+02
## 2438      excluded_file_list  AKO_04          2.871597e+02
## 2439     short_file_duration  AKO_04          1.805556e-01
## 2440     short_file_duration  AKO_04          1.805556e-01
## 2441 excluded_household_list  AKO_05          8.041667e+00
## 2442 excluded_household_list  AKO_05          8.041667e+00
## 2443 excluded_household_list  AKO_05          8.041667e+00
## 2444 excluded_household_list  AKO_05          8.041667e+00
## 2445 excluded_household_list  AKO_05          8.041667e+00
## 2446 excluded_household_list  AKO_05          8.041667e+00
## 2447 excluded_household_list  AKO_05          8.041667e+00
## 2448 excluded_household_list  AKO_05          1.286806e+01
## 2449 excluded_household_list  AKO_05          1.286806e+01
## 2450 excluded_household_list  AKO_05          1.286806e+01
## 2451 excluded_household_list  AKO_05          1.286806e+01
## 2452 excluded_household_list  AKO_05          1.286806e+01
## 2453 excluded_household_list  AKO_05          1.286806e+01
## 2454 excluded_household_list  AKO_05          7.243056e+00
## 2455 excluded_household_list  AKO_05          7.243056e+00
## 2456 excluded_household_list  AKO_05          7.243056e+00
## 2457 excluded_household_list  AKO_05          1.025000e+01
## 2458 excluded_household_list  AKO_05          1.025000e+01
## 2459 excluded_household_list  AKO_05          1.025000e+01
## 2460 excluded_household_list  AKO_05          1.025000e+01
## 2461 excluded_household_list  AKO_05          1.025000e+01
## 2462 excluded_household_list  AKO_05          1.025000e+01
## 2463 excluded_household_list  AKO_05          2.055556e+00
## 2464 excluded_household_list  AKO_05          2.055556e+00
## 2465 excluded_household_list  AKO_05          2.055556e+00
## 2466 excluded_household_list  AKO_05          1.313194e+01
## 2467 excluded_household_list  AKO_05          1.313194e+01
## 2468 excluded_household_list  AKO_05          1.313194e+01
## 2469 excluded_household_list  AKO_05          1.313194e+01
## 2470 excluded_household_list  AKO_05          1.313194e+01
## 2471 excluded_household_list  AKO_05          1.313194e+01
## 2472 excluded_household_list  AKO_05          1.313194e+01
## 2473 excluded_household_list  AKO_05          1.313194e+01
## 2474 excluded_household_list  AKO_05          1.313194e+01
## 2475 excluded_household_list  AKO_05          1.313194e+01
## 2476 excluded_household_list  AKO_05          1.313194e+01
## 2477 excluded_household_list  AKO_05          1.313194e+01
## 2478 excluded_household_list  AKO_05          1.313194e+01
## 2479 excluded_household_list  AKO_05          1.313194e+01
## 2480 excluded_household_list  AKO_05          1.313194e+01
## 2481 excluded_household_list  AKO_05          9.993056e+00
## 2482 excluded_household_list  AKO_05          9.993056e+00
## 2483 excluded_household_list  AKO_05          2.039583e+01
## 2484 excluded_household_list  AKO_05          2.039583e+01
## 2485 excluded_household_list  AKO_05          2.039583e+01
## 2486 excluded_household_list  AKO_05          2.039583e+01
## 2487 excluded_household_list  AKO_05          2.039583e+01
## 2488 excluded_household_list  AKO_05          2.039583e+01
## 2489 excluded_household_list  AKO_05          2.039583e+01
## 2490 excluded_household_list  AKO_05          2.039583e+01
## 2491 excluded_household_list  AKO_05          2.039583e+01
## 2492 excluded_household_list  AKO_05          2.039583e+01
## 2493 excluded_household_list  AKO_05          2.039583e+01
## 2494 excluded_household_list  AKO_05          2.039583e+01
## 2495 excluded_household_list  AKO_05          2.039583e+01
## 2496 excluded_household_list  AKO_05          2.039583e+01
## 2497 excluded_household_list  AKO_05          2.039583e+01
## 2498 excluded_household_list  AKO_05          2.039583e+01
## 2499 excluded_household_list  AKO_05          4.993056e+00
## 2500 excluded_household_list  AKO_05          4.993056e+00
## 2501 excluded_household_list  AKO_05          4.993056e+00
## 2502 excluded_household_list  AKO_05          4.993056e+00
## 2503 excluded_household_list  AKO_05          4.993056e+00
## 2504 excluded_household_list  AKO_05          4.993056e+00
## 2505 excluded_household_list  AKO_05          4.993056e+00
## 2506 excluded_household_list  AKO_05          5.291667e+00
## 2507 excluded_household_list  AKO_05          5.291667e+00
## 2508 excluded_household_list  AKO_05          5.291667e+00
## 2509 excluded_household_list  AKO_05          5.291667e+00
## 2510 excluded_household_list  AKO_05          5.291667e+00
## 2511 excluded_household_list  AKO_05          5.291667e+00
## 2512 excluded_household_list  AKO_05          5.291667e+00
## 2513 excluded_household_list  AKO_05          5.291667e+00
## 2514 excluded_household_list  AKO_05          5.291667e+00
## 2515 excluded_household_list  AKO_05          5.291667e+00
## 2516 excluded_household_list  AKO_05          5.291667e+00
## 2517 excluded_household_list  AKO_05          5.291667e+00
## 2518 excluded_household_list  AKO_05          5.291667e+00
## 2519 excluded_household_list  AKO_05          5.291667e+00
## 2520     short_file_duration  AKO_05          3.472222e-02
## 2521 excluded_household_list  AKO_05          3.229167e+00
## 2522 excluded_household_list  AKO_05          3.229167e+00
## 2523 excluded_household_list  AKO_05          3.229167e+00
## 2524 excluded_household_list  AKO_05          3.229167e+00
## 2525 excluded_household_list  AKO_05          3.229167e+00
## 2526 excluded_household_list  AKO_05          3.229167e+00
## 2527 excluded_household_list  AKO_05          3.229167e+00
## 2528                      ok AKO_05B          6.743056e+00
## 2529                      ok AKO_05B          6.743056e+00
## 2530                      ok AKO_05B          6.743056e+00
## 2531                      ok AKO_05B          6.743056e+00
## 2532                      ok AKO_05B          6.743056e+00
## 2533                      ok AKO_05B          6.743056e+00
## 2534                      ok AKO_05B          1.056250e+01
## 2535                      ok AKO_05B          1.056250e+01
## 2536                      ok AKO_05B          1.056250e+01
## 2537                      ok AKO_05B          1.056250e+01
## 2538                      ok AKO_05B          1.056250e+01
## 2539 excluded_household_list  AKO_06          1.986806e+01
## 2540 excluded_household_list  AKO_06          1.986806e+01
## 2541 excluded_household_list  AKO_06          1.986806e+01
## 2542 excluded_household_list  AKO_06          1.986806e+01
## 2543 excluded_household_list  AKO_06          1.986806e+01
## 2544 excluded_household_list  AKO_06          1.986806e+01
## 2545 excluded_household_list  AKO_06          1.986806e+01
## 2546 excluded_household_list  AKO_06          1.986806e+01
## 2547 excluded_household_list  AKO_06          1.986806e+01
## 2548 excluded_household_list  AKO_06          1.986806e+01
## 2549 excluded_household_list  AKO_06          1.986806e+01
## 2550 excluded_household_list  AKO_06          1.986806e+01
## 2551 excluded_household_list  AKO_06          1.986806e+01
## 2552 excluded_household_list  AKO_06          1.986806e+01
## 2553 excluded_household_list  AKO_06          1.986806e+01
## 2554     short_file_duration  AKO_06          2.708333e-01
## 2555     short_file_duration  AKO_06          2.708333e-01
## 2556 excluded_household_list  AKO_06          1.299306e+01
## 2557 excluded_household_list  AKO_06          9.847222e+00
## 2558 excluded_household_list  AKO_06          9.847222e+00
## 2559 excluded_household_list  AKO_06          9.847222e+00
## 2560 excluded_household_list  AKO_06          9.847222e+00
## 2561 excluded_household_list  AKO_06          9.847222e+00
## 2562 excluded_household_list  AKO_06          9.847222e+00
## 2563 excluded_household_list  AKO_06          9.847222e+00
## 2564 excluded_household_list  AKO_06          9.847222e+00
## 2565 excluded_household_list  AKO_06          9.847222e+00
## 2566 excluded_household_list  AKO_06          9.847222e+00
## 2567 excluded_household_list  AKO_06          9.847222e+00
## 2568 excluded_household_list  AKO_06          9.847222e+00
## 2569 excluded_household_list  AKO_06          9.847222e+00
## 2570 excluded_household_list  AKO_06          9.847222e+00
## 2571 excluded_household_list  AKO_06          1.833333e+01
## 2572 excluded_household_list  AKO_06          1.833333e+01
## 2573 excluded_household_list  AKO_06          1.833333e+01
## 2574 excluded_household_list  AKO_06          1.833333e+01
## 2575 excluded_household_list  AKO_06          1.833333e+01
## 2576 excluded_household_list  AKO_06          1.833333e+01
## 2577 excluded_household_list  AKO_06          1.833333e+01
## 2578 excluded_household_list  AKO_06          1.833333e+01
## 2579 excluded_household_list  AKO_06          1.833333e+01
## 2580 excluded_household_list  AKO_06          1.833333e+01
## 2581 excluded_household_list  AKO_06          1.833333e+01
## 2582 excluded_household_list  AKO_06          1.833333e+01
## 2583 excluded_household_list  AKO_06          1.833333e+01
## 2584 excluded_household_list  AKO_06          1.833333e+01
## 2585 excluded_household_list  AKO_06          1.833333e+01
## 2586 excluded_household_list  AKO_06          1.833333e+01
## 2587 excluded_household_list  AKO_06          1.833333e+01
## 2588 excluded_household_list  AKO_06          1.833333e+01
## 2589 excluded_household_list  AKO_06          1.833333e+01
## 2590 excluded_household_list  AKO_06          1.833333e+01
## 2591 excluded_household_list  AKO_06          1.833333e+01
## 2592 excluded_household_list  AKO_06          1.833333e+01
## 2593 excluded_household_list  AKO_06          1.833333e+01
## 2594 excluded_household_list  AKO_06          1.833333e+01
## 2595 excluded_household_list  AKO_06          1.833333e+01
## 2596 excluded_household_list  AKO_06          1.833333e+01
## 2597 excluded_household_list  AKO_06          1.833333e+01
## 2598 excluded_household_list  AKO_06          1.833333e+01
## 2599 excluded_household_list  AKO_06          1.833333e+01
## 2600     short_file_duration  AKO_06          9.305556e-01
## 2601     short_file_duration  AKO_06          9.305556e-01
## 2602     short_file_duration  AKO_06          9.305556e-01
## 2603     short_file_duration  AKO_06          9.305556e-01
## 2604     short_file_duration  AKO_06          9.305556e-01
## 2605     short_file_duration  AKO_06          9.305556e-01
## 2606 excluded_household_list  AKO_06          9.472222e+00
## 2607 excluded_household_list  AKO_06          9.472222e+00
## 2608 excluded_household_list  AKO_06          9.472222e+00
## 2609 excluded_household_list  AKO_06          9.472222e+00
## 2610 excluded_household_list  AKO_06          9.472222e+00
## 2611 excluded_household_list  AKO_06          9.472222e+00
## 2612 excluded_household_list  AKO_06          9.472222e+00
## 2613 excluded_household_list  AKO_06          9.472222e+00
## 2614 excluded_household_list  AKO_06          9.472222e+00
## 2615 excluded_household_list  AKO_06          9.472222e+00
## 2616 excluded_household_list  AKO_06          5.465278e+00
## 2617 excluded_household_list  AKO_06          5.465278e+00
## 2618 excluded_household_list  AKO_06          5.465278e+00
## 2619 excluded_household_list  AKO_06          1.999306e+01
## 2620 excluded_household_list  AKO_06          7.993056e+00
## 2621 excluded_household_list  AKO_06          5.173611e+00
## 2622 excluded_household_list  AKO_06          5.173611e+00
## 2623 excluded_household_list  AKO_06          5.173611e+00
## 2624 excluded_household_list  AKO_06          5.173611e+00
## 2625 excluded_household_list  AKO_06          5.173611e+00
## 2626 excluded_household_list  AKO_06          5.173611e+00
## 2627 excluded_household_list  AKO_06          5.173611e+00
## 2628 excluded_household_list  AKO_06          5.173611e+00
## 2629 excluded_household_list  AKO_06          5.173611e+00
## 2630 excluded_household_list  AKO_06          5.173611e+00
## 2631 excluded_household_list  AKO_06          5.173611e+00
## 2632 excluded_household_list  AKO_06          5.173611e+00
## 2633 excluded_household_list  AKO_06          5.173611e+00
## 2634 excluded_household_list  AKO_06          5.173611e+00
## 2635 excluded_household_list  AKO_06          5.173611e+00
## 2636 excluded_household_list  AKO_06          5.173611e+00
## 2637 excluded_household_list  AKO_06          5.173611e+00
## 2638 excluded_household_list  AKO_06          5.173611e+00
## 2639 excluded_household_list  AKO_06          5.173611e+00
## 2640 excluded_household_list  AKO_06          5.173611e+00
## 2641 excluded_household_list  AKO_06          5.173611e+00
## 2642 excluded_household_list  AKO_06          5.173611e+00
## 2643 excluded_household_list  AKO_06          5.173611e+00
## 2644 excluded_household_list  AKO_06          1.048611e+01
## 2645 excluded_household_list  AKO_06          1.048611e+01
## 2646 excluded_household_list  AKO_06          1.048611e+01
## 2647 excluded_household_list  AKO_06          1.048611e+01
## 2648 excluded_household_list  AKO_06          1.048611e+01
## 2649 excluded_household_list  AKO_06          1.048611e+01
## 2650 excluded_household_list  AKO_06          1.048611e+01
## 2651 excluded_household_list  AKO_06          1.048611e+01
## 2652 excluded_household_list  AKO_06          1.048611e+01
## 2653 excluded_household_list  AKO_06          1.048611e+01
## 2654 excluded_household_list  AKO_06          1.048611e+01
## 2655 excluded_household_list  AKO_06          1.048611e+01
## 2656 excluded_household_list  AKO_06          1.048611e+01
## 2657 excluded_household_list  AKO_06          1.048611e+01
## 2658 excluded_household_list  AKO_06          1.048611e+01
## 2659 excluded_household_list  AKO_06          1.048611e+01
## 2660 excluded_household_list  AKO_06          1.048611e+01
## 2661 excluded_household_list  AKO_06          1.048611e+01
## 2662 excluded_household_list  AKO_06          1.048611e+01
## 2663 excluded_household_list  AKO_06          1.048611e+01
## 2664 excluded_household_list  AKO_06          1.048611e+01
## 2665 excluded_household_list  AKO_06          1.048611e+01
## 2666 excluded_household_list  AKO_06          1.048611e+01
## 2667 excluded_household_list  AKO_06          1.048611e+01
## 2668 excluded_household_list  AKO_06          1.048611e+01
## 2669 excluded_household_list  AKO_06          1.048611e+01
## 2670 excluded_household_list  AKO_06          1.048611e+01
## 2671 excluded_household_list  AKO_06          8.833333e+00
## 2672 excluded_household_list  AKO_06          8.833333e+00
## 2673 excluded_household_list  AKO_06          8.833333e+00
## 2674 excluded_household_list  AKO_06          8.833333e+00
## 2675 excluded_household_list  AKO_06          8.833333e+00
## 2676 excluded_household_list  AKO_06          8.833333e+00
## 2677 excluded_household_list  AKO_06          8.833333e+00
## 2678 excluded_household_list  AKO_06          8.833333e+00
## 2679 excluded_household_list  AKO_06          8.833333e+00
## 2680 excluded_household_list  AKO_06          8.833333e+00
## 2681 excluded_household_list  AKO_06          8.833333e+00
## 2682                      ok AKO_06B          1.299306e+01
## 2683                      ok AKO_06B          1.156250e+01
## 2684                      ok AKO_06B          1.156250e+01
## 2685                      ok AKO_06B          1.156250e+01
## 2686                      ok AKO_06B          1.156250e+01
## 2687                      ok AKO_06B          1.156250e+01
## 2688                      ok AKO_06B          1.156250e+01
## 2689                      ok AKO_06B          1.156250e+01
## 2690                      ok AKO_06B          1.156250e+01
## 2691                      ok AKO_06B          1.156250e+01
## 2692                      ok AKO_06B          1.156250e+01
## 2693                      ok AKO_06B          1.156250e+01
## 2694                      ok AKO_06B          1.156250e+01
## 2695                      ok AKO_06B          1.156250e+01
## 2696                      ok AKO_06B          1.156250e+01
## 2697 excluded_household_list  AKO_07          5.499306e+01
## 2698 excluded_household_list  AKO_07          1.597917e+01
## 2699 excluded_household_list  AKO_07          1.597917e+01
## 2700 excluded_household_list  AKO_07          1.597917e+01
## 2701 excluded_household_list  AKO_07          1.597917e+01
## 2702 excluded_household_list  AKO_07          1.597917e+01
## 2703 excluded_household_list  AKO_07          1.597917e+01
## 2704 excluded_household_list  AKO_07          1.597917e+01
## 2705 excluded_household_list  AKO_07          1.597917e+01
## 2706 excluded_household_list  AKO_07          1.597917e+01
## 2707 excluded_household_list  AKO_07          1.597917e+01
## 2708 excluded_household_list  AKO_07          1.597917e+01
## 2709 excluded_household_list  AKO_07          1.597917e+01
## 2710 excluded_household_list  AKO_07          1.597917e+01
## 2711 excluded_household_list  AKO_07          1.597917e+01
## 2712 excluded_household_list  AKO_07          1.597917e+01
## 2713 excluded_household_list  AKO_07          1.597917e+01
## 2714 excluded_household_list  AKO_07          1.597917e+01
## 2715 excluded_household_list  AKO_07          1.597917e+01
## 2716 excluded_household_list  AKO_07          5.270833e+00
## 2717 excluded_household_list  AKO_07          5.270833e+00
## 2718 excluded_household_list  AKO_07          5.270833e+00
## 2719 excluded_household_list  AKO_07          5.270833e+00
## 2720 excluded_household_list  AKO_07          5.270833e+00
## 2721 excluded_household_list  AKO_07          5.270833e+00
## 2722 excluded_household_list  AKO_07          5.270833e+00
## 2723 excluded_household_list  AKO_07          5.270833e+00
## 2724 excluded_household_list  AKO_07          5.270833e+00
## 2725 excluded_household_list  AKO_07          5.270833e+00
## 2726 excluded_household_list  AKO_07          5.270833e+00
## 2727 excluded_household_list  AKO_07          5.270833e+00
## 2728 excluded_household_list  AKO_07          5.270833e+00
## 2729 excluded_household_list  AKO_07          5.270833e+00
## 2730 excluded_household_list  AKO_07          9.993056e+00
## 2731 excluded_household_list  AKO_07          6.368056e+00
## 2732 excluded_household_list  AKO_07          6.368056e+00
## 2733 excluded_household_list  AKO_07          6.368056e+00
## 2734 excluded_household_list  AKO_07          6.368056e+00
## 2735 excluded_household_list  AKO_07          6.368056e+00
## 2736 excluded_household_list  AKO_07          6.368056e+00
## 2737 excluded_household_list  AKO_07          6.368056e+00
## 2738 excluded_household_list  AKO_07          6.368056e+00
## 2739 excluded_household_list  AKO_07          6.368056e+00
## 2740 excluded_household_list  AKO_07          6.368056e+00
## 2741 excluded_household_list  AKO_07          6.368056e+00
## 2742 excluded_household_list  AKO_07          6.368056e+00
## 2743 excluded_household_list  AKO_07          4.062500e+00
## 2744 excluded_household_list  AKO_07          4.062500e+00
## 2745 excluded_household_list  AKO_07          4.062500e+00
## 2746 excluded_household_list  AKO_07          4.062500e+00
## 2747 excluded_household_list  AKO_07          4.062500e+00
## 2748 excluded_household_list  AKO_07          4.062500e+00
## 2749 excluded_household_list  AKO_07          4.062500e+00
## 2750 excluded_household_list  AKO_07          4.062500e+00
## 2751 excluded_household_list  AKO_07          4.062500e+00
## 2752 excluded_household_list  AKO_07          4.138889e+00
## 2753 excluded_household_list  AKO_07          4.138889e+00
## 2754 excluded_household_list  AKO_07          4.138889e+00
## 2755 excluded_household_list  AKO_07          6.909722e+00
## 2756 excluded_household_list  AKO_07          6.909722e+00
## 2757 excluded_household_list  AKO_07          6.909722e+00
## 2758 excluded_household_list  AKO_07          6.097222e+00
## 2759 excluded_household_list  AKO_07          6.097222e+00
## 2760 excluded_household_list  AKO_07          6.097222e+00
## 2761 excluded_household_list  AKO_07          6.097222e+00
## 2762 excluded_household_list  AKO_07          6.097222e+00
## 2763 excluded_household_list  AKO_07          5.416667e+00
## 2764 excluded_household_list  AKO_07          5.416667e+00
## 2765 excluded_household_list  AKO_07          5.416667e+00
## 2766 excluded_household_list  AKO_07          5.416667e+00
## 2767 excluded_household_list  AKO_07          5.416667e+00
## 2768 excluded_household_list  AKO_07          5.416667e+00
## 2769 excluded_household_list  AKO_07          5.416667e+00
## 2770 excluded_household_list  AKO_07          5.416667e+00
## 2771 excluded_household_list  AKO_07          5.416667e+00
## 2772 excluded_household_list  AKO_07          5.416667e+00
## 2773 excluded_household_list  AKO_07          5.416667e+00
## 2774 excluded_household_list  AKO_07          5.416667e+00
## 2775 excluded_household_list  AKO_07          5.416667e+00
## 2776 excluded_household_list  AKO_07          5.416667e+00
## 2777 excluded_household_list  AKO_07          5.416667e+00
## 2778 excluded_household_list  AKO_07          5.416667e+00
## 2779 excluded_household_list  AKO_07          5.416667e+00
## 2780 excluded_household_list  AKO_07          5.416667e+00
## 2781 excluded_household_list  AKO_07          5.416667e+00
## 2782 excluded_household_list  AKO_07          5.416667e+00
## 2783 excluded_household_list  AKO_08          8.569444e+00
## 2784 excluded_household_list  AKO_08          8.569444e+00
## 2785 excluded_household_list  AKO_08          8.569444e+00
## 2786 excluded_household_list  AKO_08          8.569444e+00
## 2787 excluded_household_list  AKO_08          8.569444e+00
## 2788 excluded_household_list  AKO_08          8.569444e+00
## 2789 excluded_household_list  AKO_08          8.569444e+00
## 2790 excluded_household_list  AKO_08          8.569444e+00
## 2791 excluded_household_list  AKO_08          8.569444e+00
## 2792 excluded_household_list  AKO_08          8.569444e+00
## 2793 excluded_household_list  AKO_08          8.569444e+00
## 2794 excluded_household_list  AKO_08          8.569444e+00
## 2795 excluded_household_list  AKO_08          8.569444e+00
## 2796 excluded_household_list  AKO_08          8.569444e+00
## 2797 excluded_household_list  AKO_08          8.569444e+00
## 2798 excluded_household_list  AKO_08          8.569444e+00
## 2799 excluded_household_list  AKO_08          8.569444e+00
## 2800 excluded_household_list  AKO_08          8.569444e+00
## 2801 excluded_household_list  AKO_08          8.569444e+00
## 2802 excluded_household_list  AKO_08          8.569444e+00
## 2803 excluded_household_list  AKO_08          8.569444e+00
## 2804 excluded_household_list  AKO_08          8.569444e+00
## 2805 excluded_household_list  AKO_08          8.569444e+00
## 2806 excluded_household_list  AKO_08          8.569444e+00
## 2807     short_file_duration  AKO_08          3.125000e-01
## 2808     short_file_duration  AKO_08          3.125000e-01
## 2809 excluded_household_list  AKO_08          2.908681e+02
## 2810 excluded_household_list  AKO_08          2.908681e+02
## 2811 excluded_household_list  AKO_08          2.908681e+02
## 2812 excluded_household_list  AKO_08          2.908681e+02
## 2813 excluded_household_list  AKO_08          2.908681e+02
## 2814 excluded_household_list  AKO_08          2.908681e+02
## 2815 excluded_household_list  AKO_08          2.908681e+02
## 2816 excluded_household_list  AKO_08          2.908681e+02
## 2817 excluded_household_list  AKO_08          2.908681e+02
## 2818 excluded_household_list  AKO_08          2.908681e+02
## 2819 excluded_household_list  AKO_08          2.908681e+02
## 2820 excluded_household_list  AKO_08          2.908681e+02
## 2821 excluded_household_list  AKO_08          2.908681e+02
## 2822 excluded_household_list  AKO_08          2.908681e+02
## 2823 excluded_household_list  AKO_08          2.908681e+02
## 2824 excluded_household_list  AKO_08          2.908681e+02
## 2825 excluded_household_list  AKO_08          2.908681e+02
## 2826 excluded_household_list  AKO_08          2.908681e+02
## 2827 excluded_household_list  AKO_08          2.908681e+02
## 2828 excluded_household_list  AKO_08          2.908681e+02
## 2829 excluded_household_list  AKO_08          2.908681e+02
## 2830 excluded_household_list  AKO_08          2.908681e+02
## 2831 excluded_household_list  AKO_08          2.908681e+02
## 2832 excluded_household_list  AKO_08          2.908681e+02
## 2833 excluded_household_list  AKO_08          2.908681e+02
## 2834 excluded_household_list  AKO_08          2.908681e+02
## 2835 excluded_household_list  AKO_08          2.908681e+02
## 2836 excluded_household_list  AKO_08          2.908681e+02
## 2837 excluded_household_list  AKO_08          2.908681e+02
## 2838 excluded_household_list  AKO_08          2.908681e+02
## 2839 excluded_household_list  AKO_08          2.908681e+02
## 2840 excluded_household_list  AKO_08          2.908681e+02
## 2841 excluded_household_list  AKO_08          2.908681e+02
## 2842 excluded_household_list  AKO_08          2.908681e+02
## 2843 excluded_household_list  AKO_08          2.908681e+02
## 2844 excluded_household_list  AKO_08          2.908681e+02
## 2845 excluded_household_list  AKO_08          2.908681e+02
## 2846 excluded_household_list  AKO_08          2.908681e+02
## 2847 excluded_household_list  AKO_08          2.908681e+02
## 2848 excluded_household_list  AKO_08          2.908681e+02
## 2849 excluded_household_list  AKO_08          2.908681e+02
## 2850 excluded_household_list  AKO_08          2.908681e+02
## 2851 excluded_household_list  AKO_08          2.908681e+02
## 2852 excluded_household_list  AKO_08          2.908681e+02
## 2853 excluded_household_list  AKO_08          2.908681e+02
## 2854 excluded_household_list  AKO_08          2.908681e+02
## 2855 excluded_household_list  AKO_08          2.908681e+02
## 2856 excluded_household_list  AKO_08          2.908681e+02
## 2857 excluded_household_list  AKO_08          2.908681e+02
## 2858 excluded_household_list  AKO_08          2.908681e+02
## 2859 excluded_household_list  AKO_08          2.908681e+02
## 2860 excluded_household_list  AKO_08          2.908681e+02
## 2861 excluded_household_list  AKO_08          2.908681e+02
## 2862 excluded_household_list  AKO_08          2.908681e+02
## 2863 excluded_household_list  AKO_08          2.908681e+02
## 2864 excluded_household_list  AKO_08          2.908681e+02
## 2865 excluded_household_list  AKO_08          2.908681e+02
## 2866 excluded_household_list  AKO_08          2.908681e+02
## 2867 excluded_household_list  AKO_08          2.908681e+02
## 2868 excluded_household_list  AKO_08          2.908681e+02
## 2869 excluded_household_list  AKO_08          2.908681e+02
## 2870 excluded_household_list  AKO_08          2.908681e+02
## 2871 excluded_household_list  AKO_08          2.908681e+02
## 2872 excluded_household_list  AKO_08          2.908681e+02
## 2873 excluded_household_list  AKO_08          2.908681e+02
## 2874 excluded_household_list  AKO_08          2.908681e+02
## 2875 excluded_household_list  AKO_08          2.908681e+02
## 2876 excluded_household_list  AKO_08          2.908681e+02
## 2877 excluded_household_list  AKO_08          2.908681e+02
## 2878 excluded_household_list  AKO_08          2.908681e+02
## 2879 excluded_household_list  AKO_08          2.908681e+02
## 2880 excluded_household_list  AKO_08          2.908681e+02
## 2881 excluded_household_list  AKO_08          2.908681e+02
## 2882 excluded_household_list  AKO_08          2.908681e+02
## 2883 excluded_household_list  AKO_08          2.908681e+02
## 2884 excluded_household_list  AKO_08          2.908681e+02
## 2885 excluded_household_list  AKO_08          2.908681e+02
## 2886 excluded_household_list  AKO_08          2.908681e+02
## 2887 excluded_household_list  AKO_08          2.908681e+02
## 2888 excluded_household_list  AKO_08          2.908681e+02
## 2889 excluded_household_list  AKO_08          2.908681e+02
## 2890 excluded_household_list  AKO_08          2.908681e+02
## 2891 excluded_household_list  AKO_08          2.908681e+02
## 2892 excluded_household_list  AKO_08          2.908681e+02
## 2893 excluded_household_list  AKO_08          2.908681e+02
## 2894 excluded_household_list  AKO_08          2.908681e+02
## 2895 excluded_household_list  AKO_08          2.908681e+02
## 2896 excluded_household_list  AKO_08          2.908681e+02
## 2897 excluded_household_list  AKO_08          2.908681e+02
## 2898 excluded_household_list  AKO_08          2.908681e+02
## 2899 excluded_household_list  AKO_08          2.908681e+02
## 2900 excluded_household_list  AKO_08          2.908681e+02
## 2901 excluded_household_list  AKO_08          2.908681e+02
## 2902 excluded_household_list  AKO_08          2.908681e+02
## 2903 excluded_household_list  AKO_08          2.908681e+02
## 2904 excluded_household_list  AKO_08          2.908681e+02
## 2905 excluded_household_list  AKO_08          2.908681e+02
## 2906 excluded_household_list  AKO_08          2.908681e+02
## 2907 excluded_household_list  AKO_08          2.908681e+02
## 2908 excluded_household_list  AKO_08          2.908681e+02
## 2909 excluded_household_list  AKO_08          2.908681e+02
## 2910 excluded_household_list  AKO_08          2.908681e+02
## 2911 excluded_household_list  AKO_08          2.908681e+02
## 2912 excluded_household_list  AKO_08          2.908681e+02
## 2913 excluded_household_list  AKO_08          2.908681e+02
## 2914 excluded_household_list  AKO_08          2.908681e+02
## 2915 excluded_household_list  AKO_08          2.908681e+02
## 2916 excluded_household_list  AKO_08          2.908681e+02
## 2917 excluded_household_list  AKO_08          2.908681e+02
## 2918 excluded_household_list  AKO_08          2.908681e+02
## 2919 excluded_household_list  AKO_08          2.906806e+02
## 2920 excluded_household_list  AKO_08          2.906806e+02
## 2921 excluded_household_list  AKO_08          2.906806e+02
## 2922 excluded_household_list  AKO_08          2.906806e+02
## 2923 excluded_household_list  AKO_08          2.906806e+02
## 2924 excluded_household_list  AKO_08          2.906806e+02
## 2925 excluded_household_list  AKO_08          2.906806e+02
## 2926 excluded_household_list  AKO_08          2.906806e+02
## 2927 excluded_household_list  AKO_08          2.906806e+02
## 2928 excluded_household_list  AKO_08          2.906806e+02
## 2929 excluded_household_list  AKO_08          2.906806e+02
## 2930 excluded_household_list  AKO_08          2.906806e+02
## 2931 excluded_household_list  AKO_08          2.906806e+02
## 2932 excluded_household_list  AKO_08          2.906806e+02
## 2933 excluded_household_list  AKO_08          2.906806e+02
## 2934 excluded_household_list  AKO_08          2.906806e+02
## 2935 excluded_household_list  AKO_08          2.906806e+02
## 2936 excluded_household_list  AKO_08          2.906806e+02
## 2937 excluded_household_list  AKO_08          2.906806e+02
## 2938 excluded_household_list  AKO_08          2.906806e+02
## 2939 excluded_household_list  AKO_08          2.906806e+02
## 2940 excluded_household_list  AKO_08          2.906806e+02
## 2941 excluded_household_list  AKO_08          2.906806e+02
## 2942 excluded_household_list  AKO_08          2.906806e+02
## 2943 excluded_household_list  AKO_08          2.906806e+02
## 2944 excluded_household_list  AKO_08          2.906806e+02
## 2945 excluded_household_list  AKO_08          2.906806e+02
## 2946 excluded_household_list  AKO_08          2.906806e+02
## 2947 excluded_household_list  AKO_08          2.906806e+02
## 2948 excluded_household_list  AKO_08          2.906806e+02
## 2949 excluded_household_list  AKO_08          2.906806e+02
## 2950 excluded_household_list  AKO_08          2.906806e+02
## 2951 excluded_household_list  AKO_08          2.906806e+02
## 2952 excluded_household_list  AKO_08          2.906806e+02
## 2953 excluded_household_list  AKO_08          2.906806e+02
## 2954 excluded_household_list  AKO_08          2.906806e+02
## 2955 excluded_household_list  AKO_08          2.906806e+02
## 2956 excluded_household_list  AKO_08          2.906806e+02
## 2957 excluded_household_list  AKO_08          2.906806e+02
## 2958 excluded_household_list  AKO_08          2.906806e+02
## 2959 excluded_household_list  AKO_08          2.906806e+02
## 2960 excluded_household_list  AKO_08          2.906806e+02
## 2961 excluded_household_list  AKO_08          2.906806e+02
## 2962 excluded_household_list  AKO_08          2.906806e+02
## 2963 excluded_household_list  AKO_08          2.906806e+02
## 2964 excluded_household_list  AKO_08          2.906806e+02
## 2965 excluded_household_list  AKO_08          2.906806e+02
## 2966 excluded_household_list  AKO_08          2.906806e+02
## 2967 excluded_household_list  AKO_08          2.906806e+02
## 2968 excluded_household_list  AKO_08          2.906806e+02
## 2969 excluded_household_list  AKO_08          2.906806e+02
## 2970 excluded_household_list  AKO_08          2.906806e+02
## 2971 excluded_household_list  AKO_08          2.906806e+02
## 2972 excluded_household_list  AKO_08          2.906806e+02
## 2973 excluded_household_list  AKO_08          2.906806e+02
## 2974 excluded_household_list  AKO_08          2.906806e+02
## 2975 excluded_household_list  AKO_08          2.906806e+02
## 2976 excluded_household_list  AKO_08          2.906806e+02
## 2977 excluded_household_list  AKO_08          2.906806e+02
## 2978 excluded_household_list  AKO_08          2.906806e+02
## 2979 excluded_household_list  AKO_08          2.906806e+02
## 2980 excluded_household_list  AKO_08          2.906806e+02
## 2981 excluded_household_list  AKO_08          2.906806e+02
## 2982 excluded_household_list  AKO_08          2.906806e+02
## 2983 excluded_household_list  AKO_08          2.906806e+02
## 2984 excluded_household_list  AKO_08          2.906806e+02
## 2985 excluded_household_list  AKO_08          2.906806e+02
## 2986 excluded_household_list  AKO_08          2.906806e+02
## 2987 excluded_household_list  AKO_08          2.906806e+02
## 2988 excluded_household_list  AKO_08          2.906806e+02
## 2989 excluded_household_list  AKO_08          2.906806e+02
## 2990 excluded_household_list  AKO_08          2.906806e+02
## 2991 excluded_household_list  AKO_08          2.906806e+02
## 2992 excluded_household_list  AKO_08          2.906806e+02
## 2993 excluded_household_list  AKO_08          2.906806e+02
## 2994 excluded_household_list  AKO_08          2.906806e+02
## 2995 excluded_household_list  AKO_08          2.906806e+02
## 2996 excluded_household_list  AKO_08          2.906806e+02
## 2997 excluded_household_list  AKO_08          2.906806e+02
## 2998 excluded_household_list  AKO_08          2.906806e+02
## 2999 excluded_household_list  AKO_08          2.906806e+02
## 3000 excluded_household_list  AKO_08          2.906806e+02
## 3001 excluded_household_list  AKO_08          2.906806e+02
## 3002 excluded_household_list  AKO_08          2.906806e+02
## 3003 excluded_household_list  AKO_08          2.906806e+02
## 3004 excluded_household_list  AKO_08          2.906806e+02
## 3005 excluded_household_list  AKO_08          2.906806e+02
## 3006 excluded_household_list  AKO_08          2.906806e+02
## 3007 excluded_household_list  AKO_08          2.906806e+02
## 3008 excluded_household_list  AKO_08          2.906806e+02
## 3009 excluded_household_list  AKO_08          2.906806e+02
## 3010 excluded_household_list  AKO_08          2.906806e+02
## 3011 excluded_household_list  AKO_08          2.906806e+02
## 3012 excluded_household_list  AKO_08          8.118056e+00
## 3013 excluded_household_list  AKO_08          8.118056e+00
## 3014 excluded_household_list  AKO_08          8.118056e+00
## 3015 excluded_household_list  AKO_08          8.118056e+00
## 3016 excluded_household_list  AKO_08          8.118056e+00
## 3017 excluded_household_list  AKO_08          8.118056e+00
## 3018 excluded_household_list  AKO_08          8.118056e+00
## 3019 excluded_household_list  AKO_08          8.118056e+00
## 3020 excluded_household_list  AKO_08          8.118056e+00
## 3021 excluded_household_list  AKO_08          8.118056e+00
## 3022 excluded_household_list  AKO_08          8.118056e+00
## 3023 excluded_household_list  AKO_08          8.118056e+00
## 3024 excluded_household_list  AKO_08          8.118056e+00
## 3025 excluded_household_list  AKO_08          8.118056e+00
## 3026 excluded_household_list  AKO_08          8.118056e+00
## 3027 excluded_household_list  AKO_08          8.118056e+00
## 3028 excluded_household_list  AKO_08          8.118056e+00
## 3029 excluded_household_list  AKO_08          8.118056e+00
## 3030 excluded_household_list  AKO_08          8.118056e+00
## 3031 excluded_household_list  AKO_08          8.118056e+00
## 3032 excluded_household_list  AKO_08          8.118056e+00
## 3033 excluded_household_list  AKO_08          8.118056e+00
## 3034 excluded_household_list  AKO_08          8.118056e+00
## 3035 excluded_household_list  AKO_08          8.118056e+00
## 3036 excluded_household_list  AKO_08          8.118056e+00
## 3037 excluded_household_list  AKO_08          8.118056e+00
## 3038 excluded_household_list  AKO_08          8.118056e+00
## 3039 excluded_household_list  AKO_08          8.118056e+00
## 3040 excluded_household_list  AKO_08          8.118056e+00
## 3041 excluded_household_list  AKO_08          8.118056e+00
## 3042 excluded_household_list  AKO_08          8.118056e+00
## 3043 excluded_household_list  AKO_08          8.118056e+00
## 3044 excluded_household_list  AKO_08          4.083333e+00
## 3045 excluded_household_list  AKO_08          4.083333e+00
## 3046 excluded_household_list  AKO_08          4.083333e+00
## 3047 excluded_household_list  AKO_08          4.083333e+00
## 3048 excluded_household_list  AKO_08          4.083333e+00
## 3049 excluded_household_list  AKO_08          4.083333e+00
## 3050 excluded_household_list  AKO_08          4.083333e+00
## 3051 excluded_household_list  AKO_08          4.083333e+00
## 3052 excluded_household_list  AKO_08          3.944444e+00
## 3053 excluded_household_list  AKO_08          3.944444e+00
## 3054 excluded_household_list  AKO_08          3.944444e+00
## 3055 excluded_household_list  AKO_08          3.944444e+00
## 3056 excluded_household_list  AKO_08          6.430556e+00
## 3057 excluded_household_list  AKO_08          6.430556e+00
## 3058 excluded_household_list  AKO_08          6.430556e+00
## 3059 excluded_household_list  AKO_08          6.430556e+00
## 3060 excluded_household_list  AKO_08          6.430556e+00
## 3061 excluded_household_list  AKO_08          6.430556e+00
## 3062 excluded_household_list  AKO_08          6.430556e+00
## 3063 excluded_household_list  AKO_08          6.430556e+00
## 3064 excluded_household_list  AKO_08          6.430556e+00
## 3065 excluded_household_list  AKO_08          6.430556e+00
## 3066 excluded_household_list  AKO_08          6.430556e+00
## 3067 excluded_household_list  AKO_08          6.430556e+00
## 3068 excluded_household_list  AKO_08          6.430556e+00
## 3069 excluded_household_list  AKO_08          6.430556e+00
## 3070 excluded_household_list  AKO_08          6.430556e+00
## 3071 excluded_household_list  AKO_08          6.104167e+00
## 3072 excluded_household_list  AKO_08          6.104167e+00
## 3073 excluded_household_list  AKO_08          6.104167e+00
## 3074 excluded_household_list  AKO_08          6.104167e+00
## 3075 excluded_household_list  AKO_08          6.104167e+00
## 3076 excluded_household_list  AKO_08          6.104167e+00
## 3077 excluded_household_list  AKO_08          6.104167e+00
## 3078 excluded_household_list  AKO_08          6.104167e+00
## 3079 excluded_household_list  AKO_08          6.104167e+00
## 3080 excluded_household_list  AKO_08          6.104167e+00
## 3081 excluded_household_list  AKO_08          6.104167e+00
## 3082 excluded_household_list  AKO_08          6.104167e+00
## 3083 excluded_household_list  AKO_08          6.104167e+00
## 3084 excluded_household_list  AKO_08          6.104167e+00
## 3085 excluded_household_list  AKO_08          6.104167e+00
## 3086                 ambient  AKO_09          1.499306e+01
## 3087     short_file_duration  AKO_09          1.041667e-01
## 3088     short_file_duration  AKO_09          1.041667e-01
## 3089                 ambient  AKO_09          1.299306e+01
## 3090     short_file_duration  AKO_09          4.166667e-02
## 3091                 ambient  AKO_09          1.299306e+01
## 3092     short_file_duration  AKO_09          4.861111e-02
## 3093     short_file_duration  AKO_09          9.861111e-01
## 3094     short_file_duration  AKO_09          9.861111e-01
## 3095                 ambient  AKO_09          2.699306e+01
## 3096                 ambient  AKO_09          8.993056e+00
## 3097                 ambient  AKO_09          2.907569e+02
## 3098                 ambient  AKO_09          2.907569e+02
## 3099                 ambient  AKO_09          2.907569e+02
## 3100                 ambient  AKO_09          2.907569e+02
## 3101                 ambient  AKO_09          2.907569e+02
## 3102                 ambient  AKO_09          2.907569e+02
## 3103                 ambient  AKO_09          2.907569e+02
## 3104                 ambient  AKO_09          2.907569e+02
## 3105                 ambient  AKO_09          2.907569e+02
## 3106                 ambient  AKO_09          2.907569e+02
## 3107                 ambient  AKO_09          2.907569e+02
## 3108                 ambient  AKO_09          2.907569e+02
## 3109                 ambient  AKO_09          2.907569e+02
## 3110                 ambient  AKO_09          2.907569e+02
## 3111                 ambient  AKO_09          2.907569e+02
## 3112                 ambient  AKO_09          2.907569e+02
## 3113                 ambient  AKO_09          2.907569e+02
## 3114                 ambient  AKO_09          2.907569e+02
## 3115                 ambient  AKO_09          2.907569e+02
## 3116                 ambient  AKO_09          2.907569e+02
## 3117                 ambient  AKO_09          2.907569e+02
## 3118                 ambient  AKO_09          2.907569e+02
## 3119                 ambient  AKO_09          2.907569e+02
## 3120                 ambient  AKO_09          2.907569e+02
## 3121                 ambient  AKO_09          2.907569e+02
## 3122                 ambient  AKO_09          2.907569e+02
## 3123                 ambient  AKO_09          2.907569e+02
## 3124                 ambient  AKO_09          2.907569e+02
## 3125                 ambient  AKO_09          2.907569e+02
## 3126                 ambient  AKO_09          2.907569e+02
## 3127                 ambient  AKO_09          2.907569e+02
## 3128                 ambient  AKO_09          2.907569e+02
## 3129                 ambient  AKO_09          2.907569e+02
## 3130                 ambient  AKO_09          2.907569e+02
## 3131                 ambient  AKO_09          2.907569e+02
## 3132                 ambient  AKO_09          2.907569e+02
## 3133                 ambient  AKO_09          2.907569e+02
## 3134                 ambient  AKO_09          2.907569e+02
## 3135                 ambient  AKO_09          2.907569e+02
## 3136                 ambient  AKO_09          2.907569e+02
## 3137                 ambient  AKO_09          2.907569e+02
## 3138                 ambient  AKO_09          2.907569e+02
## 3139                 ambient  AKO_09          2.907569e+02
## 3140                 ambient  AKO_09          2.907569e+02
## 3141                 ambient  AKO_09          2.907569e+02
## 3142                 ambient  AKO_09          2.907569e+02
## 3143                 ambient  AKO_09          2.907569e+02
## 3144                 ambient  AKO_09          2.907569e+02
## 3145      excluded_file_list  AKO_09          2.904097e+02
## 3146      excluded_file_list  AKO_09          2.904097e+02
## 3147      excluded_file_list  AKO_09          2.904097e+02
## 3148      excluded_file_list  AKO_09          2.904097e+02
## 3149      excluded_file_list  AKO_09          2.904097e+02
## 3150      excluded_file_list  AKO_09          2.904097e+02
## 3151      excluded_file_list  AKO_09          2.904097e+02
## 3152      excluded_file_list  AKO_09          2.904097e+02
## 3153      excluded_file_list  AKO_09          2.904097e+02
## 3154      excluded_file_list  AKO_09          2.904097e+02
## 3155      excluded_file_list  AKO_09          2.904097e+02
## 3156      excluded_file_list  AKO_09          2.904097e+02
## 3157      excluded_file_list  AKO_09          2.904097e+02
## 3158      excluded_file_list  AKO_09          2.904097e+02
## 3159      excluded_file_list  AKO_09          2.904097e+02
## 3160      excluded_file_list  AKO_09          2.904097e+02
## 3161      excluded_file_list  AKO_09          2.904097e+02
## 3162      excluded_file_list  AKO_09          2.904097e+02
## 3163      excluded_file_list  AKO_09          2.904097e+02
## 3164      excluded_file_list  AKO_09          2.904097e+02
## 3165      excluded_file_list  AKO_09          2.904097e+02
## 3166      excluded_file_list  AKO_09          2.904097e+02
## 3167      excluded_file_list  AKO_09          2.904097e+02
## 3168      excluded_file_list  AKO_09          2.904097e+02
## 3169      excluded_file_list  AKO_09          2.904097e+02
## 3170      excluded_file_list  AKO_09          2.904097e+02
## 3171      excluded_file_list  AKO_09          2.904097e+02
## 3172      excluded_file_list  AKO_09          2.904097e+02
## 3173      excluded_file_list  AKO_09          2.904097e+02
## 3174      excluded_file_list  AKO_09          2.904097e+02
## 3175      excluded_file_list  AKO_09          2.904097e+02
## 3176      excluded_file_list  AKO_09          2.904097e+02
## 3177      excluded_file_list  AKO_09          2.904097e+02
## 3178      excluded_file_list  AKO_09          2.904097e+02
## 3179      excluded_file_list  AKO_09          2.904097e+02
## 3180      excluded_file_list  AKO_09          2.904097e+02
## 3181      excluded_file_list  AKO_09          2.904097e+02
## 3182      excluded_file_list  AKO_09          2.904097e+02
## 3183      excluded_file_list  AKO_09          2.904097e+02
## 3184      excluded_file_list  AKO_09          2.904097e+02
## 3185      excluded_file_list  AKO_09          2.904097e+02
## 3186      excluded_file_list  AKO_09          2.904097e+02
## 3187      excluded_file_list  AKO_09          2.904097e+02
## 3188      excluded_file_list  AKO_09          2.904097e+02
## 3189      excluded_file_list  AKO_09          2.904097e+02
## 3190      excluded_file_list  AKO_09          2.904097e+02
## 3191      excluded_file_list  AKO_09          2.904097e+02
## 3192      excluded_file_list  AKO_09          2.904792e+02
## 3193      excluded_file_list  AKO_09          2.904792e+02
## 3194      excluded_file_list  AKO_09          2.904792e+02
## 3195      excluded_file_list  AKO_09          2.904792e+02
## 3196      excluded_file_list  AKO_09          2.904792e+02
## 3197      excluded_file_list  AKO_09          2.904792e+02
## 3198      excluded_file_list  AKO_09          2.904792e+02
## 3199      excluded_file_list  AKO_09          2.904792e+02
## 3200      excluded_file_list  AKO_09          2.904792e+02
## 3201      excluded_file_list  AKO_09          2.904792e+02
## 3202      excluded_file_list  AKO_09          2.904792e+02
## 3203      excluded_file_list  AKO_09          2.904792e+02
## 3204      excluded_file_list  AKO_09          2.904792e+02
## 3205      excluded_file_list  AKO_09          2.904792e+02
## 3206      excluded_file_list  AKO_09          2.904792e+02
## 3207      excluded_file_list  AKO_09          2.904792e+02
## 3208      excluded_file_list  AKO_09          2.904792e+02
## 3209      excluded_file_list  AKO_09          2.904792e+02
## 3210      excluded_file_list  AKO_09          2.904792e+02
## 3211      excluded_file_list  AKO_09          2.904792e+02
## 3212      excluded_file_list  AKO_09          2.904792e+02
## 3213      excluded_file_list  AKO_09          2.904792e+02
## 3214      excluded_file_list  AKO_09          2.904792e+02
## 3215      excluded_file_list  AKO_09          2.904792e+02
## 3216      excluded_file_list  AKO_09          2.904792e+02
## 3217      excluded_file_list  AKO_09          2.904792e+02
## 3218      excluded_file_list  AKO_09          2.904792e+02
## 3219      excluded_file_list  AKO_09          2.904792e+02
## 3220      excluded_file_list  AKO_09          2.904792e+02
## 3221      excluded_file_list  AKO_09          2.904792e+02
## 3222      excluded_file_list  AKO_09          2.904792e+02
## 3223      excluded_file_list  AKO_09          2.904792e+02
## 3224      excluded_file_list  AKO_09          2.904792e+02
## 3225      excluded_file_list  AKO_09          2.904792e+02
## 3226      excluded_file_list  AKO_09          2.904792e+02
## 3227      excluded_file_list  AKO_09          2.904792e+02
## 3228      excluded_file_list  AKO_09          2.904792e+02
## 3229      excluded_file_list  AKO_09          2.904792e+02
## 3230      excluded_file_list  AKO_09          2.904792e+02
## 3231      excluded_file_list  AKO_09          2.904792e+02
## 3232      excluded_file_list  AKO_09          2.904792e+02
## 3233      excluded_file_list  AKO_09          2.904792e+02
## 3234      excluded_file_list  AKO_09          2.904792e+02
## 3235      excluded_file_list  AKO_09          2.904792e+02
## 3236      excluded_file_list  AKO_09          2.904792e+02
## 3237      excluded_file_list  AKO_09          2.904792e+02
## 3238      excluded_file_list  AKO_09          2.904792e+02
## 3239      excluded_file_list  AKO_09          2.904792e+02
## 3240      excluded_file_list  AKO_09          2.904792e+02
## 3241      excluded_file_list  AKO_09          2.904792e+02
## 3242      excluded_file_list  AKO_09          2.904792e+02
## 3243      excluded_file_list  AKO_09          2.904792e+02
## 3244      excluded_file_list  AKO_09          2.904792e+02
## 3245      excluded_file_list  AKO_09          2.904792e+02
## 3246      excluded_file_list  AKO_09          2.904792e+02
## 3247      excluded_file_list  AKO_09          2.904792e+02
## 3248      excluded_file_list  AKO_09          2.904792e+02
## 3249      excluded_file_list  AKO_09          2.904792e+02
## 3250      excluded_file_list  AKO_09          2.904792e+02
## 3251      excluded_file_list  AKO_09          2.904792e+02
## 3252      excluded_file_list  AKO_09          2.904792e+02
## 3253      excluded_file_list  AKO_09          2.904792e+02
## 3254      excluded_file_list  AKO_09          2.904792e+02
## 3255      excluded_file_list  AKO_09          2.904792e+02
## 3256      excluded_file_list  AKO_09          2.904792e+02
## 3257      excluded_file_list  AKO_09          2.904792e+02
## 3258      excluded_file_list  AKO_09          2.904792e+02
## 3259      excluded_file_list  AKO_09          2.904792e+02
## 3260      excluded_file_list  AKO_09          2.904792e+02
## 3261      excluded_file_list  AKO_09          2.904792e+02
## 3262      excluded_file_list  AKO_09          2.904792e+02
## 3263      excluded_file_list  AKO_09          2.904792e+02
## 3264      excluded_file_list  AKO_09          2.904792e+02
## 3265      excluded_file_list  AKO_09          2.904792e+02
## 3266      excluded_file_list  AKO_09          2.904792e+02
## 3267      excluded_file_list  AKO_09          2.904792e+02
## 3268      excluded_file_list  AKO_09          2.904792e+02
## 3269      excluded_file_list  AKO_09          2.904792e+02
## 3270      excluded_file_list  AKO_09          2.904792e+02
## 3271      excluded_file_list  AKO_09          2.904792e+02
## 3272      excluded_file_list  AKO_09          2.904792e+02
## 3273      excluded_file_list  AKO_09          2.904792e+02
## 3274      excluded_file_list  AKO_09          2.904792e+02
## 3275      excluded_file_list  AKO_09          2.904792e+02
## 3276      excluded_file_list  AKO_09          2.904792e+02
## 3277      excluded_file_list  AKO_09          1.238194e+01
## 3278                 ambient  AKO_09          1.238194e+01
## 3279      excluded_file_list  AKO_09          5.027778e+00
## 3280      excluded_file_list  AKO_09          5.027778e+00
## 3281      excluded_file_list  AKO_09          5.027778e+00
## 3282      excluded_file_list  AKO_09          5.027778e+00
## 3283      excluded_file_list  AKO_09          5.027778e+00
## 3284      excluded_file_list  AKO_09          5.027778e+00
## 3285      excluded_file_list  AKO_09          5.027778e+00
## 3286      excluded_file_list  AKO_09          5.027778e+00
## 3287      excluded_file_list  AKO_09          5.027778e+00
## 3288      excluded_file_list  AKO_09          5.027778e+00
## 3289     short_file_duration  AKO_09          9.930556e-01
## 3290     short_file_duration  AKO_09          9.930556e-01
## 3291     short_file_duration  AKO_09          9.930556e-01
## 3292                 ambient  AKO_09          1.299306e+01
## 3293                 ambient  AKO_09          1.299306e+01
## 3294      excluded_file_list  AKO_10          2.909722e+02
## 3295      excluded_file_list  AKO_10          2.909722e+02
## 3296      excluded_file_list  AKO_10          2.909722e+02
## 3297      excluded_file_list  AKO_10          2.909722e+02
## 3298      excluded_file_list  AKO_10          2.909722e+02
## 3299      excluded_file_list  AKO_10          2.909722e+02
## 3300      excluded_file_list  AKO_10          2.909722e+02
## 3301      excluded_file_list  AKO_10          2.909722e+02
## 3302      excluded_file_list  AKO_10          2.909722e+02
## 3303      excluded_file_list  AKO_10          2.909722e+02
## 3304      excluded_file_list  AKO_10          2.909722e+02
## 3305      excluded_file_list  AKO_10          2.909722e+02
## 3306      excluded_file_list  AKO_10          2.909722e+02
## 3307      excluded_file_list  AKO_10          2.909722e+02
## 3308      excluded_file_list  AKO_10          2.909722e+02
## 3309      excluded_file_list  AKO_10          2.909722e+02
## 3310      excluded_file_list  AKO_10          2.909722e+02
## 3311      excluded_file_list  AKO_10          2.909722e+02
## 3312      excluded_file_list  AKO_10          2.909722e+02
## 3313      excluded_file_list  AKO_10          2.909722e+02
## 3314      excluded_file_list  AKO_10          2.909722e+02
## 3315      excluded_file_list  AKO_10          2.909722e+02
## 3316      excluded_file_list  AKO_10          2.909722e+02
## 3317      excluded_file_list  AKO_10          2.909722e+02
## 3318      excluded_file_list  AKO_10          2.909722e+02
## 3319      excluded_file_list  AKO_10          2.909722e+02
## 3320      excluded_file_list  AKO_10          2.909722e+02
## 3321      excluded_file_list  AKO_10          2.909722e+02
## 3322      excluded_file_list  AKO_10          2.909722e+02
## 3323      excluded_file_list  AKO_10          2.909722e+02
## 3324      excluded_file_list  AKO_10          2.909722e+02
## 3325      excluded_file_list  AKO_10          2.909722e+02
## 3326      excluded_file_list  AKO_10          2.909722e+02
## 3327      excluded_file_list  AKO_10          2.909722e+02
## 3328      excluded_file_list  AKO_10          2.909722e+02
## 3329      excluded_file_list  AKO_10          2.909722e+02
## 3330      excluded_file_list  AKO_10          2.909722e+02
## 3331      excluded_file_list  AKO_10          2.909722e+02
## 3332      excluded_file_list  AKO_10          2.909722e+02
## 3333      excluded_file_list  AKO_10          2.909722e+02
## 3334      excluded_file_list  AKO_10          2.909722e+02
## 3335      excluded_file_list  AKO_10          2.909722e+02
## 3336      excluded_file_list  AKO_10          2.909722e+02
## 3337      excluded_file_list  AKO_10          2.909722e+02
## 3338      excluded_file_list  AKO_10          2.909722e+02
## 3339      excluded_file_list  AKO_10          2.909722e+02
## 3340      excluded_file_list  AKO_10          2.909722e+02
## 3341      excluded_file_list  AKO_10          2.909722e+02
## 3342      excluded_file_list  AKO_10          2.909722e+02
## 3343      excluded_file_list  AKO_10          2.909722e+02
## 3344      excluded_file_list  AKO_10          2.909722e+02
## 3345      excluded_file_list  AKO_10          2.909722e+02
## 3346      excluded_file_list  AKO_10          2.909722e+02
## 3347      excluded_file_list  AKO_10          2.909722e+02
## 3348      excluded_file_list  AKO_10          2.909722e+02
## 3349      excluded_file_list  AKO_10          2.909722e+02
## 3350      excluded_file_list  AKO_10          2.909722e+02
## 3351      excluded_file_list  AKO_10          2.909722e+02
## 3352      excluded_file_list  AKO_10          2.909722e+02
## 3353      excluded_file_list  AKO_10          2.909722e+02
## 3354      excluded_file_list  AKO_10          2.909722e+02
## 3355      excluded_file_list  AKO_10          2.909722e+02
## 3356      excluded_file_list  AKO_10          2.909722e+02
## 3357      excluded_file_list  AKO_10          2.909722e+02
## 3358      excluded_file_list  AKO_10          2.909722e+02
## 3359      excluded_file_list  AKO_10          2.909722e+02
## 3360      excluded_file_list  AKO_10          2.909722e+02
## 3361      excluded_file_list  AKO_10          2.909722e+02
## 3362      excluded_file_list  AKO_10          2.909722e+02
## 3363      excluded_file_list  AKO_10          2.909722e+02
## 3364      excluded_file_list  AKO_10          2.909722e+02
## 3365      excluded_file_list  AKO_10          2.909722e+02
## 3366      excluded_file_list  AKO_10          2.909722e+02
## 3367      excluded_file_list  AKO_10          2.909722e+02
## 3368      excluded_file_list  AKO_10          2.909722e+02
## 3369      excluded_file_list  AKO_10          2.909722e+02
## 3370      excluded_file_list  AKO_10          2.909722e+02
## 3371      excluded_file_list  AKO_10          2.909722e+02
## 3372      excluded_file_list  AKO_10          2.909722e+02
## 3373      excluded_file_list  AKO_10          2.909722e+02
## 3374      excluded_file_list  AKO_10          2.909722e+02
## 3375      excluded_file_list  AKO_10          2.909722e+02
## 3376      excluded_file_list  AKO_10          2.909722e+02
## 3377      excluded_file_list  AKO_10          2.909722e+02
## 3378      excluded_file_list  AKO_10          2.909722e+02
## 3379      excluded_file_list  AKO_10          2.909722e+02
## 3380      excluded_file_list  AKO_10          2.907847e+02
## 3381      excluded_file_list  AKO_10          2.907847e+02
## 3382      excluded_file_list  AKO_10          2.907847e+02
## 3383      excluded_file_list  AKO_10          2.907847e+02
## 3384      excluded_file_list  AKO_10          2.907847e+02
## 3385      excluded_file_list  AKO_10          2.907847e+02
## 3386      excluded_file_list  AKO_10          2.907847e+02
## 3387      excluded_file_list  AKO_10          2.907847e+02
## 3388      excluded_file_list  AKO_10          2.907847e+02
## 3389      excluded_file_list  AKO_10          2.907847e+02
## 3390      excluded_file_list  AKO_10          2.907847e+02
## 3391      excluded_file_list  AKO_10          2.907847e+02
## 3392      excluded_file_list  AKO_10          2.907847e+02
## 3393      excluded_file_list  AKO_10          2.907847e+02
## 3394      excluded_file_list  AKO_10          2.907847e+02
## 3395      excluded_file_list  AKO_10          2.907847e+02
## 3396      excluded_file_list  AKO_10          2.907847e+02
## 3397      excluded_file_list  AKO_10          2.907847e+02
## 3398      excluded_file_list  AKO_10          2.907847e+02
## 3399      excluded_file_list  AKO_10          2.907847e+02
## 3400      excluded_file_list  AKO_10          2.907847e+02
## 3401      excluded_file_list  AKO_10          2.907847e+02
## 3402      excluded_file_list  AKO_10          2.907847e+02
## 3403      excluded_file_list  AKO_10          2.907847e+02
## 3404      excluded_file_list  AKO_10          2.907847e+02
## 3405      excluded_file_list  AKO_10          2.907847e+02
## 3406      excluded_file_list  AKO_10          2.907847e+02
## 3407      excluded_file_list  AKO_10          2.907847e+02
## 3408      excluded_file_list  AKO_10          2.907847e+02
## 3409      excluded_file_list  AKO_10          2.907847e+02
## 3410      excluded_file_list  AKO_10          2.907847e+02
## 3411      excluded_file_list  AKO_10          2.907847e+02
## 3412      excluded_file_list  AKO_10          2.907847e+02
## 3413      excluded_file_list  AKO_10          2.907847e+02
## 3414      excluded_file_list  AKO_10          2.907847e+02
## 3415      excluded_file_list  AKO_10          2.907847e+02
## 3416      excluded_file_list  AKO_10          2.907847e+02
## 3417      excluded_file_list  AKO_10          2.907847e+02
## 3418      excluded_file_list  AKO_10          2.907847e+02
## 3419      excluded_file_list  AKO_10          2.907847e+02
## 3420      excluded_file_list  AKO_10          2.907847e+02
## 3421      excluded_file_list  AKO_10          2.907847e+02
## 3422      excluded_file_list  AKO_10          2.907847e+02
## 3423      excluded_file_list  AKO_10          2.907847e+02
## 3424      excluded_file_list  AKO_10          2.907847e+02
## 3425      excluded_file_list  AKO_10          2.907847e+02
## 3426      excluded_file_list  AKO_10          2.907847e+02
## 3427      excluded_file_list  AKO_10          2.907847e+02
## 3428      excluded_file_list  AKO_10          2.907847e+02
## 3429      excluded_file_list  AKO_10          2.907847e+02
## 3430      excluded_file_list  AKO_10          2.907847e+02
## 3431      excluded_file_list  AKO_10          2.907847e+02
## 3432      excluded_file_list  AKO_10          2.907847e+02
## 3433      excluded_file_list  AKO_10          2.907847e+02
## 3434      excluded_file_list  AKO_10          2.907847e+02
## 3435      excluded_file_list  AKO_10          2.907847e+02
## 3436      excluded_file_list  AKO_10          2.907847e+02
## 3437      excluded_file_list  AKO_10          2.907847e+02
## 3438      excluded_file_list  AKO_10          2.907847e+02
## 3439      excluded_file_list  AKO_10          2.907847e+02
## 3440      excluded_file_list  AKO_10          2.907847e+02
## 3441      excluded_file_list  AKO_10          2.907847e+02
## 3442      excluded_file_list  AKO_10          2.907847e+02
## 3443      excluded_file_list  AKO_10          2.907847e+02
## 3444      excluded_file_list  AKO_10          2.907847e+02
## 3445      excluded_file_list  AKO_10          2.907847e+02
## 3446      excluded_file_list  AKO_10          2.907847e+02
## 3447      excluded_file_list  AKO_10          2.907847e+02
## 3448      excluded_file_list  AKO_10          2.907847e+02
## 3449      excluded_file_list  AKO_10          2.907847e+02
## 3450      excluded_file_list  AKO_10          2.907847e+02
## 3451      excluded_file_list  AKO_10          2.907847e+02
## 3452      excluded_file_list  AKO_10          2.907847e+02
## 3453      excluded_file_list  AKO_10          2.907847e+02
## 3454      excluded_file_list  AKO_10          2.907847e+02
## 3455      excluded_file_list  AKO_10          2.907847e+02
## 3456      excluded_file_list  AKO_10          2.907847e+02
## 3457      excluded_file_list  AKO_10          2.907847e+02
## 3458      excluded_file_list  AKO_10          2.907847e+02
## 3459      excluded_file_list  AKO_10          2.907847e+02
## 3460      excluded_file_list  AKO_10          2.907847e+02
## 3461      excluded_file_list  AKO_10          2.907847e+02
## 3462      excluded_file_list  AKO_10          2.907847e+02
## 3463      excluded_file_list  AKO_10          2.907847e+02
## 3464      excluded_file_list  AKO_10          2.907847e+02
## 3465      excluded_file_list  AKO_10          2.907847e+02
## 3466      excluded_file_list  AKO_10          2.907847e+02
## 3467      excluded_file_list  AKO_10          2.907847e+02
## 3468      excluded_file_list  AKO_10          2.907847e+02
## 3469      excluded_file_list  AKO_10          2.907847e+02
## 3470      excluded_file_list  AKO_10          2.907847e+02
## 3471      excluded_file_list  AKO_10          2.907847e+02
## 3472      excluded_file_list  AKO_10          2.907847e+02
## 3473      excluded_file_list  AKO_10          2.907847e+02
## 3474      excluded_file_list  AKO_10          2.907847e+02
## 3475      excluded_file_list  AKO_10          2.907847e+02
## 3476      excluded_file_list  AKO_10          1.151389e+01
## 3477      excluded_file_list  AKO_10          1.151389e+01
## 3478      excluded_file_list  AKO_10          1.151389e+01
## 3479      excluded_file_list  AKO_10          1.151389e+01
## 3480      excluded_file_list  AKO_10          1.151389e+01
## 3481      excluded_file_list  AKO_10          1.151389e+01
## 3482      excluded_file_list  AKO_10          1.151389e+01
## 3483      excluded_file_list  AKO_10          1.151389e+01
## 3484      excluded_file_list  AKO_10          1.151389e+01
## 3485      excluded_file_list  AKO_10          1.151389e+01
## 3486      excluded_file_list  AKO_10          1.151389e+01
## 3487      excluded_file_list  AKO_10          1.151389e+01
## 3488      excluded_file_list  AKO_10          1.151389e+01
## 3489      excluded_file_list  AKO_10          1.151389e+01
## 3490      excluded_file_list  AKO_10          1.151389e+01
## 3491      excluded_file_list  AKO_10          1.151389e+01
## 3492      excluded_file_list  AKO_10          1.151389e+01
## 3493      excluded_file_list  AKO_10          1.151389e+01
## 3494      excluded_file_list  AKO_10          1.151389e+01
## 3495      excluded_file_list  AKO_10          1.151389e+01
## 3496      excluded_file_list  AKO_10          1.151389e+01
## 3497      excluded_file_list  AKO_10          1.151389e+01
## 3498      excluded_file_list  AKO_10          1.151389e+01
## 3499      excluded_file_list  AKO_10          2.229167e+00
## 3500      excluded_file_list  AKO_10          2.229167e+00
## 3501      excluded_file_list  AKO_10          2.229167e+00
## 3502      excluded_file_list  AKO_10          2.229167e+00
## 3503      excluded_file_list  AKO_10          2.229167e+00
## 3504      excluded_file_list  AKO_10          2.229167e+00
## 3505      excluded_file_list  AKO_10          2.229167e+00
## 3506      excluded_file_list  AKO_10          2.229167e+00
## 3507      excluded_file_list  AKO_10          2.229167e+00
## 3508     short_file_duration  AKO_10          9.930556e-01
## 3509     short_file_duration  AKO_10          6.736111e-01
## 3510     short_file_duration  AKO_10          6.736111e-01
## 3511     short_file_duration  AKO_10          3.472222e-02
## 3512 excluded_household_list  MUS_01          1.499306e+01
## 3513 excluded_household_list  MUS_01          1.206250e+01
## 3514 excluded_household_list  MUS_01          1.206250e+01
## 3515 excluded_household_list  MUS_01          1.206250e+01
## 3516 excluded_household_list  MUS_01          1.206250e+01
## 3517 excluded_household_list  MUS_01          1.206250e+01
## 3518 excluded_household_list  MUS_01          1.206250e+01
## 3519 excluded_household_list  MUS_01          1.206250e+01
## 3520 excluded_household_list  MUS_01          1.206250e+01
## 3521 excluded_household_list  MUS_01          1.206250e+01
## 3522 excluded_household_list  MUS_01          1.206250e+01
## 3523 excluded_household_list  MUS_01          1.206250e+01
## 3524 excluded_household_list  MUS_01          1.206250e+01
## 3525 excluded_household_list  MUS_01          1.206250e+01
## 3526 excluded_household_list  MUS_01          1.206250e+01
## 3527 excluded_household_list  MUS_01          1.206250e+01
## 3528 excluded_household_list  MUS_01          1.206250e+01
## 3529 excluded_household_list  MUS_01          1.206250e+01
## 3530 excluded_household_list  MUS_01          1.206250e+01
## 3531 excluded_household_list  MUS_01          1.206250e+01
## 3532 excluded_household_list  MUS_01          1.206250e+01
## 3533 excluded_household_list  MUS_01          1.206250e+01
## 3534 excluded_household_list  MUS_01          1.206250e+01
## 3535 excluded_household_list  MUS_01          1.206250e+01
## 3536 excluded_household_list  MUS_01          1.206250e+01
## 3537 excluded_household_list  MUS_01          1.206250e+01
## 3538 excluded_household_list  MUS_01          1.206250e+01
## 3539 excluded_household_list  MUS_01          1.206250e+01
## 3540 excluded_household_list  MUS_01          1.206250e+01
## 3541 excluded_household_list  MUS_01          1.206250e+01
## 3542 excluded_household_list  MUS_01          1.206250e+01
## 3543 excluded_household_list  MUS_01          1.206250e+01
## 3544 excluded_household_list  MUS_01          1.206250e+01
## 3545 excluded_household_list  MUS_01          1.206250e+01
## 3546 excluded_household_list  MUS_01          1.206250e+01
## 3547 excluded_household_list  MUS_01          1.206250e+01
## 3548 excluded_household_list  MUS_01          1.206250e+01
## 3549 excluded_household_list  MUS_01          1.206250e+01
## 3550 excluded_household_list  MUS_01          1.206250e+01
## 3551 excluded_household_list  MUS_01          1.206250e+01
## 3552 excluded_household_list  MUS_01          1.056944e+01
## 3553 excluded_household_list  MUS_01          1.056944e+01
## 3554 excluded_household_list  MUS_01          1.056944e+01
## 3555 excluded_household_list  MUS_01          1.056944e+01
## 3556 excluded_household_list  MUS_01          1.056944e+01
## 3557 excluded_household_list  MUS_01          1.056944e+01
## 3558 excluded_household_list  MUS_01          1.056944e+01
## 3559 excluded_household_list  MUS_01          1.056944e+01
## 3560 excluded_household_list  MUS_01          1.056944e+01
## 3561 excluded_household_list  MUS_01          1.056944e+01
## 3562 excluded_household_list  MUS_01          1.056944e+01
## 3563 excluded_household_list  MUS_01          1.056944e+01
## 3564 excluded_household_list  MUS_01          1.056944e+01
## 3565 excluded_household_list  MUS_01          1.056944e+01
## 3566 excluded_household_list  MUS_01          1.056944e+01
## 3567 excluded_household_list  MUS_01          1.056944e+01
## 3568 excluded_household_list  MUS_01          1.056944e+01
## 3569 excluded_household_list  MUS_01          1.056944e+01
## 3570 excluded_household_list  MUS_01          1.056944e+01
## 3571 excluded_household_list  MUS_01          1.056944e+01
## 3572 excluded_household_list  MUS_01          1.056944e+01
## 3573 excluded_household_list  MUS_01          1.056944e+01
## 3574 excluded_household_list  MUS_01          1.056944e+01
## 3575 excluded_household_list  MUS_01          1.056944e+01
## 3576 excluded_household_list  MUS_01          1.056944e+01
## 3577 excluded_household_list  MUS_01          1.056944e+01
## 3578 excluded_household_list  MUS_01          1.056944e+01
## 3579 excluded_household_list  MUS_01          2.510417e+01
## 3580 excluded_household_list  MUS_01          2.510417e+01
## 3581 excluded_household_list  MUS_01          2.510417e+01
## 3582 excluded_household_list  MUS_01          2.510417e+01
## 3583 excluded_household_list  MUS_01          2.510417e+01
## 3584 excluded_household_list  MUS_01          2.510417e+01
## 3585 excluded_household_list  MUS_01          2.510417e+01
## 3586 excluded_household_list  MUS_01          2.510417e+01
## 3587 excluded_household_list  MUS_01          2.510417e+01
## 3588 excluded_household_list  MUS_01          2.510417e+01
## 3589 excluded_household_list  MUS_01          2.510417e+01
## 3590 excluded_household_list  MUS_01          2.510417e+01
## 3591 excluded_household_list  MUS_01          2.510417e+01
## 3592 excluded_household_list  MUS_01          2.510417e+01
## 3593 excluded_household_list  MUS_01          2.510417e+01
## 3594 excluded_household_list  MUS_01          2.510417e+01
## 3595 excluded_household_list  MUS_01          2.510417e+01
## 3596 excluded_household_list  MUS_01          2.510417e+01
## 3597 excluded_household_list  MUS_01          2.510417e+01
## 3598 excluded_household_list  MUS_01          2.510417e+01
## 3599 excluded_household_list  MUS_01          2.510417e+01
## 3600 excluded_household_list  MUS_01          2.510417e+01
## 3601 excluded_household_list  MUS_01          2.510417e+01
## 3602 excluded_household_list  MUS_01          2.510417e+01
## 3603 excluded_household_list  MUS_01          2.510417e+01
## 3604 excluded_household_list  MUS_01          2.510417e+01
## 3605 excluded_household_list  MUS_01          2.510417e+01
## 3606 excluded_household_list  MUS_01          2.510417e+01
## 3607 excluded_household_list  MUS_01          2.510417e+01
## 3608 excluded_household_list  MUS_01          2.510417e+01
## 3609 excluded_household_list  MUS_01          2.510417e+01
## 3610 excluded_household_list  MUS_01          2.510417e+01
## 3611 excluded_household_list  MUS_01          2.510417e+01
## 3612 excluded_household_list  MUS_01          2.510417e+01
## 3613 excluded_household_list  MUS_01          2.510417e+01
## 3614 excluded_household_list  MUS_01          1.252778e+01
## 3615 excluded_household_list  MUS_01          1.252778e+01
## 3616 excluded_household_list  MUS_01          1.252778e+01
## 3617 excluded_household_list  MUS_01          1.252778e+01
## 3618 excluded_household_list  MUS_01          1.252778e+01
## 3619 excluded_household_list  MUS_01          1.252778e+01
## 3620 excluded_household_list  MUS_01          1.252778e+01
## 3621 excluded_household_list  MUS_01          1.252778e+01
## 3622 excluded_household_list  MUS_01          1.252778e+01
## 3623 excluded_household_list  MUS_01          1.252778e+01
## 3624 excluded_household_list  MUS_01          1.252778e+01
## 3625 excluded_household_list  MUS_01          1.252778e+01
## 3626 excluded_household_list  MUS_01          1.252778e+01
## 3627 excluded_household_list  MUS_01          1.252778e+01
## 3628 excluded_household_list  MUS_01          1.252778e+01
## 3629 excluded_household_list  MUS_01          1.252778e+01
## 3630 excluded_household_list  MUS_01          1.252778e+01
## 3631 excluded_household_list  MUS_01          1.252778e+01
## 3632 excluded_household_list  MUS_01          1.252778e+01
## 3633 excluded_household_list  MUS_01          1.252778e+01
## 3634 excluded_household_list  MUS_01          1.252778e+01
## 3635 excluded_household_list  MUS_01          1.252778e+01
## 3636 excluded_household_list  MUS_01          1.252778e+01
## 3637 excluded_household_list  MUS_01          1.252778e+01
## 3638 excluded_household_list  MUS_01          1.252778e+01
## 3639 excluded_household_list  MUS_01          1.252778e+01
## 3640 excluded_household_list  MUS_01          1.252778e+01
## 3641 excluded_household_list  MUS_01          1.252778e+01
## 3642 excluded_household_list  MUS_01          1.252778e+01
## 3643 excluded_household_list  MUS_01          5.527778e+00
## 3644 excluded_household_list  MUS_01          5.527778e+00
## 3645 excluded_household_list  MUS_01          5.527778e+00
## 3646 excluded_household_list  MUS_01          5.527778e+00
## 3647 excluded_household_list  MUS_01          5.527778e+00
## 3648 excluded_household_list  MUS_01          5.527778e+00
## 3649 excluded_household_list  MUS_01          5.527778e+00
## 3650 excluded_household_list  MUS_01          5.527778e+00
## 3651 excluded_household_list  MUS_01          5.527778e+00
## 3652 excluded_household_list  MUS_01          5.527778e+00
## 3653 excluded_household_list  MUS_01          5.527778e+00
## 3654 excluded_household_list  MUS_01          5.527778e+00
## 3655 excluded_household_list  MUS_01          5.527778e+00
## 3656 excluded_household_list  MUS_01          5.527778e+00
## 3657 excluded_household_list  MUS_01          1.888889e+00
## 3658 excluded_household_list  MUS_01          1.888889e+00
## 3659 excluded_household_list  MUS_01          1.888889e+00
## 3660 excluded_household_list  MUS_01          1.888889e+00
## 3661 excluded_household_list  MUS_01          1.888889e+00
## 3662 excluded_household_list  MUS_01          1.888889e+00
## 3663 excluded_household_list  MUS_01          1.888889e+00
## 3664 excluded_household_list  MUS_01          1.888889e+00
## 3665 excluded_household_list  MUS_01          1.299306e+01
## 3666 excluded_household_list  MUS_01          1.258333e+01
## 3667 excluded_household_list  MUS_01          1.258333e+01
## 3668 excluded_household_list  MUS_01          1.258333e+01
## 3669 excluded_household_list  MUS_01          1.258333e+01
## 3670 excluded_household_list  MUS_01          1.258333e+01
## 3671 excluded_household_list  MUS_01          1.258333e+01
## 3672 excluded_household_list  MUS_01          1.258333e+01
## 3673 excluded_household_list  MUS_01          1.258333e+01
## 3674 excluded_household_list  MUS_01          1.258333e+01
## 3675 excluded_household_list  MUS_01          1.258333e+01
## 3676 excluded_household_list  MUS_01          1.258333e+01
## 3677 excluded_household_list  MUS_01          1.258333e+01
## 3678 excluded_household_list  MUS_01          1.258333e+01
## 3679 excluded_household_list  MUS_01          1.258333e+01
## 3680 excluded_household_list  MUS_01          1.258333e+01
## 3681 excluded_household_list  MUS_01          1.258333e+01
## 3682 excluded_household_list  MUS_01          1.258333e+01
## 3683 excluded_household_list  MUS_01          1.258333e+01
## 3684 excluded_household_list  MUS_01          1.258333e+01
## 3685 excluded_household_list  MUS_01          1.258333e+01
## 3686 excluded_household_list  MUS_01          1.258333e+01
## 3687 excluded_household_list  MUS_01          1.258333e+01
## 3688 excluded_household_list  MUS_01          1.258333e+01
## 3689 excluded_household_list  MUS_01          1.258333e+01
## 3690 excluded_household_list  MUS_01          1.258333e+01
## 3691 excluded_household_list  MUS_01          1.258333e+01
## 3692 excluded_household_list  MUS_01          1.258333e+01
## 3693 excluded_household_list  MUS_01          1.258333e+01
## 3694 excluded_household_list  MUS_01          1.258333e+01
## 3695 excluded_household_list  MUS_01          1.258333e+01
## 3696 excluded_household_list  MUS_01          1.258333e+01
## 3697 excluded_household_list  MUS_01          1.258333e+01
## 3698 excluded_household_list  MUS_01          1.258333e+01
## 3699 excluded_household_list  MUS_01          1.258333e+01
## 3700 excluded_household_list  MUS_01          1.258333e+01
## 3701 excluded_household_list  MUS_01          1.258333e+01
## 3702 excluded_household_list  MUS_01          1.258333e+01
## 3703 excluded_household_list  MUS_01          1.258333e+01
## 3704 excluded_household_list  MUS_01          1.258333e+01
## 3705 excluded_household_list  MUS_01          1.258333e+01
## 3706 excluded_household_list  MUS_01          1.258333e+01
## 3707 excluded_household_list  MUS_01          6.604167e+00
## 3708 excluded_household_list  MUS_01          6.604167e+00
## 3709 excluded_household_list  MUS_01          6.604167e+00
## 3710 excluded_household_list  MUS_01          6.604167e+00
## 3711 excluded_household_list  MUS_01          6.604167e+00
## 3712 excluded_household_list  MUS_01          6.604167e+00
## 3713 excluded_household_list  MUS_01          6.604167e+00
## 3714 excluded_household_list  MUS_01          6.604167e+00
## 3715 excluded_household_list  MUS_01          6.604167e+00
## 3716 excluded_household_list  MUS_01          6.604167e+00
## 3717 excluded_household_list  MUS_01          6.604167e+00
## 3718 excluded_household_list  MUS_01          6.604167e+00
## 3719 excluded_household_list  MUS_01          6.604167e+00
## 3720 excluded_household_list  MUS_01          6.604167e+00
## 3721 excluded_household_list  MUS_01          6.604167e+00
## 3722 excluded_household_list  MUS_01          6.604167e+00
## 3723 excluded_household_list  MUS_01          5.611111e+00
## 3724 excluded_household_list  MUS_01          5.611111e+00
## 3725 excluded_household_list  MUS_01          5.611111e+00
## 3726 excluded_household_list  MUS_01          5.611111e+00
## 3727 excluded_household_list  MUS_01          5.611111e+00
## 3728 excluded_household_list  MUS_01          5.611111e+00
## 3729 excluded_household_list  MUS_01          5.611111e+00
## 3730 excluded_household_list  MUS_01          5.611111e+00
## 3731 excluded_household_list  MUS_01          5.611111e+00
## 3732 excluded_household_list  MUS_01          5.611111e+00
## 3733     short_file_duration  MUS_02          2.083333e-02
## 3734     short_file_duration  MUS_02          4.861111e-02
## 3735     short_file_duration  MUS_02          4.861111e-02
## 3736     short_file_duration  MUS_02          5.138889e-01
## 3737     short_file_duration  MUS_02          5.138889e-01
## 3738      excluded_file_list  MUS_03          2.593125e+02
## 3739      excluded_file_list  MUS_03          2.593125e+02
## 3740      excluded_file_list  MUS_03          2.593125e+02
## 3741      excluded_file_list  MUS_03          2.593125e+02
## 3742      excluded_file_list  MUS_03          2.593125e+02
## 3743      excluded_file_list  MUS_03          2.593125e+02
## 3744      excluded_file_list  MUS_03          2.593125e+02
## 3745      excluded_file_list  MUS_03          2.593125e+02
## 3746      excluded_file_list  MUS_03          2.593125e+02
## 3747      excluded_file_list  MUS_03          2.593125e+02
## 3748      excluded_file_list  MUS_03          2.593125e+02
## 3749      excluded_file_list  MUS_03          2.593125e+02
## 3750      excluded_file_list  MUS_03          2.593125e+02
## 3751      excluded_file_list  MUS_03          2.593125e+02
## 3752      excluded_file_list  MUS_03          2.593125e+02
## 3753      excluded_file_list  MUS_03          2.593125e+02
## 3754      excluded_file_list  MUS_03          2.593125e+02
## 3755      excluded_file_list  MUS_03          2.593125e+02
## 3756      excluded_file_list  MUS_03          2.593125e+02
## 3757      excluded_file_list  MUS_03          2.593125e+02
## 3758      excluded_file_list  MUS_03          2.593125e+02
## 3759      excluded_file_list  MUS_03          2.593125e+02
## 3760      excluded_file_list  MUS_03          2.593125e+02
## 3761      excluded_file_list  MUS_03          2.593125e+02
## 3762      excluded_file_list  MUS_03          2.593125e+02
## 3763      excluded_file_list  MUS_03          2.593125e+02
## 3764      excluded_file_list  MUS_03          2.593125e+02
## 3765      excluded_file_list  MUS_03          2.593125e+02
## 3766      excluded_file_list  MUS_03          2.593125e+02
## 3767      excluded_file_list  MUS_03          2.593125e+02
## 3768      excluded_file_list  MUS_03          2.593125e+02
## 3769      excluded_file_list  MUS_03          2.593125e+02
## 3770      excluded_file_list  MUS_03          2.593125e+02
## 3771      excluded_file_list  MUS_03          2.593125e+02
## 3772      excluded_file_list  MUS_03          2.593125e+02
## 3773      excluded_file_list  MUS_03          2.593125e+02
## 3774      excluded_file_list  MUS_03          2.593125e+02
## 3775      excluded_file_list  MUS_03          2.593125e+02
## 3776      excluded_file_list  MUS_03          2.593125e+02
## 3777      excluded_file_list  MUS_03          2.593125e+02
## 3778      excluded_file_list  MUS_03          2.594792e+02
## 3779      excluded_file_list  MUS_03          2.594792e+02
## 3780      excluded_file_list  MUS_03          2.594792e+02
## 3781      excluded_file_list  MUS_03          2.594792e+02
## 3782      excluded_file_list  MUS_03          2.594792e+02
## 3783      excluded_file_list  MUS_03          2.594792e+02
## 3784      excluded_file_list  MUS_03          2.594792e+02
## 3785      excluded_file_list  MUS_03          2.594792e+02
## 3786      excluded_file_list  MUS_03          2.594792e+02
## 3787      excluded_file_list  MUS_03          2.594792e+02
## 3788      excluded_file_list  MUS_03          2.594792e+02
## 3789      excluded_file_list  MUS_03          2.594792e+02
## 3790      excluded_file_list  MUS_03          2.594792e+02
## 3791      excluded_file_list  MUS_03          2.594792e+02
## 3792      excluded_file_list  MUS_03          2.594792e+02
## 3793      excluded_file_list  MUS_03          2.594792e+02
## 3794      excluded_file_list  MUS_03          2.594792e+02
## 3795      excluded_file_list  MUS_03          2.594792e+02
## 3796      excluded_file_list  MUS_03          2.594792e+02
## 3797      excluded_file_list  MUS_03          2.594792e+02
## 3798      excluded_file_list  MUS_03          2.594792e+02
## 3799      excluded_file_list  MUS_03          2.594792e+02
## 3800      excluded_file_list  MUS_03          2.594792e+02
## 3801      excluded_file_list  MUS_03          2.594792e+02
## 3802      excluded_file_list  MUS_03          2.594792e+02
## 3803      excluded_file_list  MUS_03          2.594792e+02
## 3804      excluded_file_list  MUS_03          2.594792e+02
## 3805      excluded_file_list  MUS_03          2.594792e+02
## 3806      excluded_file_list  MUS_03          2.594792e+02
## 3807      excluded_file_list  MUS_03          2.594792e+02
## 3808      excluded_file_list  MUS_03          2.594792e+02
## 3809      excluded_file_list  MUS_03          2.594792e+02
## 3810      excluded_file_list  MUS_03          2.594792e+02
## 3811      excluded_file_list  MUS_03          2.594792e+02
## 3812      excluded_file_list  MUS_03          2.594792e+02
## 3813      excluded_file_list  MUS_03          2.594792e+02
## 3814      excluded_file_list  MUS_03          2.594792e+02
## 3815      excluded_file_list  MUS_03          2.594792e+02
## 3816      excluded_file_list  MUS_03          2.594792e+02
## 3817      excluded_file_list  MUS_03          2.594792e+02
## 3818      excluded_file_list  MUS_03          2.594792e+02
## 3819      excluded_file_list  MUS_03          2.594792e+02
## 3820      excluded_file_list  MUS_03          2.594792e+02
## 3821      excluded_file_list  MUS_03          2.594792e+02
## 3822      excluded_file_list  MUS_03          2.594792e+02
## 3823     short_file_duration  MUS_04          1.388889e-01
## 3824     short_file_duration  MUS_05          9.791667e-01
## 3825     short_file_duration  MUS_05          9.791667e-01
## 3826     short_file_duration  MUS_05          9.791667e-01
## 3827     short_file_duration  MUS_05          9.791667e-01
## 3828     short_file_duration  MUS_05          9.791667e-01
## 3829     short_file_duration  MUS_05          9.791667e-01
## 3830                 ambient  MUS_07          1.499306e+01
## 3831                 ambient  MUS_07          1.299306e+01
## 3832                 ambient  MUS_07          1.299306e+01
## 3833                 ambient  MUS_07          2.699306e+01
## 3834                 ambient  MUS_07          2.222222e+00
## 3835                 ambient  MUS_07          2.222222e+00
## 3836                 ambient  MUS_07          2.222222e+00
## 3837                 ambient  MUS_07          2.222222e+00
## 3838                 ambient  MUS_07          2.222222e+00
## 3839                 ambient  MUS_07          5.993056e+00
## 3840     short_file_duration  MUS_07          3.472222e-02
## 3841                 ambient  MUS_07          2.131944e+00
## 3842                 ambient  MUS_07          2.131944e+00
## 3843                 ambient  MUS_07          2.131944e+00
## 3844                 ambient  MUS_09          7.958333e+00
## 3845                 ambient  MUS_09          7.958333e+00
## 3846                 ambient  MUS_09          7.958333e+00
## 3847                 ambient  MUS_09          5.916667e+00
## 3848                 ambient  MUS_09          5.916667e+00
## 3849                 ambient  MUS_09          2.393056e+01
## 3850                 ambient  MUS_09          2.393056e+01
## 3851                 ambient  MUS_09          2.393056e+01
## 3852                 ambient  MUS_09          2.393056e+01
## 3853                 ambient  MUS_09          1.299306e+01
## 3854                 ambient  MUS_09          7.937500e+00
## 3855                 ambient  MUS_09          7.937500e+00
## 3856                 ambient  MUS_09          7.937500e+00
## 3857     short_file_duration  MUS_09          7.916667e-01
## 3858     short_file_duration  MUS_09          7.916667e-01
## 3859      excluded_file_list  MUS_10          1.383542e+01
## 3860      excluded_file_list  MUS_10          2.862361e+02
## 3861      excluded_file_list  MUS_10          2.862361e+02
## 3862      excluded_file_list  MUS_10          2.862361e+02
## 3863      excluded_file_list  MUS_10          2.862361e+02
## 3864      excluded_file_list  MUS_10          2.862361e+02
## 3865      excluded_file_list  MUS_10          2.862361e+02
## 3866      excluded_file_list  MUS_10          2.862361e+02
## 3867      excluded_file_list  MUS_10          2.862361e+02
## 3868      excluded_file_list  MUS_10          2.862361e+02
## 3869      excluded_file_list  MUS_10          2.862361e+02
## 3870      excluded_file_list  MUS_10          2.862361e+02
## 3871      excluded_file_list  MUS_10          2.862361e+02
## 3872      excluded_file_list  MUS_10          2.862361e+02
## 3873      excluded_file_list  MUS_10          2.862361e+02
## 3874      excluded_file_list  MUS_10          2.862361e+02
## 3875      excluded_file_list  MUS_10          2.862361e+02
## 3876      excluded_file_list  MUS_10          2.862361e+02
## 3877      excluded_file_list  MUS_10          2.862361e+02
## 3878      excluded_file_list  MUS_10          2.862361e+02
## 3879      excluded_file_list  MUS_10          2.862361e+02
## 3880      excluded_file_list  MUS_10          2.862361e+02
## 3881      excluded_file_list  MUS_10          2.862361e+02
## 3882      excluded_file_list  MUS_10          2.862361e+02
## 3883      excluded_file_list  MUS_10          2.862361e+02
## 3884      excluded_file_list  MUS_10          2.862361e+02
## 3885      excluded_file_list  MUS_10          2.862361e+02
## 3886      excluded_file_list  MUS_10          2.862361e+02
## 3887      excluded_file_list  MUS_10          2.862361e+02
## 3888      excluded_file_list  MUS_10          2.862361e+02
## 3889      excluded_file_list  MUS_10          2.862361e+02
## 3890      excluded_file_list  MUS_10          2.862361e+02
## 3891      excluded_file_list  MUS_10          2.862361e+02
## 3892      excluded_file_list  MUS_10          2.862361e+02
## 3893      excluded_file_list  MUS_10          2.862361e+02
## 3894      excluded_file_list  MUS_10          2.862361e+02
## 3895      excluded_file_list  MUS_10          2.862361e+02
## 3896      excluded_file_list  MUS_10          2.862361e+02
## 3897      excluded_file_list  MUS_10          2.862361e+02
## 3898      excluded_file_list  MUS_10          2.862361e+02
## 3899      excluded_file_list  MUS_10          2.867361e+02
## 3900      excluded_file_list  MUS_10          2.867361e+02
## 3901      excluded_file_list  MUS_10          2.867361e+02
## 3902      excluded_file_list  MUS_10          2.867361e+02
## 3903      excluded_file_list  MUS_10          2.867361e+02
## 3904      excluded_file_list  MUS_10          2.867361e+02
## 3905      excluded_file_list  MUS_10          2.867361e+02
## 3906      excluded_file_list  MUS_10          2.867361e+02
## 3907      excluded_file_list  MUS_10          2.867361e+02
## 3908      excluded_file_list  MUS_10          2.867361e+02
## 3909      excluded_file_list  MUS_10          2.867361e+02
## 3910      excluded_file_list  MUS_10          2.867361e+02
## 3911      excluded_file_list  MUS_10          2.867361e+02
## 3912      excluded_file_list  MUS_10          2.867361e+02
## 3913      excluded_file_list  MUS_10          2.867361e+02
## 3914      excluded_file_list  MUS_10          2.867361e+02
## 3915      excluded_file_list  MUS_10          2.867361e+02
## 3916      excluded_file_list  MUS_10          2.867361e+02
## 3917      excluded_file_list  MUS_10          2.867361e+02
## 3918      excluded_file_list  MUS_10          2.867361e+02
## 3919      excluded_file_list  MUS_10          2.867361e+02
## 3920      excluded_file_list  MUS_10          2.867361e+02
## 3921      excluded_file_list  MUS_10          2.867361e+02
## 3922      excluded_file_list  MUS_10          2.867361e+02
## 3923      excluded_file_list  MUS_10          2.867361e+02
## 3924      excluded_file_list  MUS_10          2.867361e+02
## 3925      excluded_file_list  MUS_10          2.867361e+02
## 3926      excluded_file_list  MUS_10          2.867361e+02
## 3927      excluded_file_list  MUS_10          2.867361e+02
## 3928      excluded_file_list  MUS_10          2.867361e+02
## 3929      excluded_file_list  MUS_10          2.867361e+02
## 3930      excluded_file_list  MUS_10          2.867361e+02
## 3931      excluded_file_list  MUS_10          2.867361e+02
## 3932      excluded_file_list  MUS_10          2.867361e+02
## 3933      excluded_file_list  MUS_10          2.867361e+02
## 3934      excluded_file_list  MUS_10          2.867361e+02
## 3935      excluded_file_list  MUS_10          2.867361e+02
## 3936      excluded_file_list  MUS_10          2.867361e+02
## 3937      excluded_file_list  MUS_10          2.867361e+02
## 3938      excluded_file_list  MUS_10          2.867361e+02
## 3939      excluded_file_list  MUS_10          2.867361e+02
## 3940      excluded_file_list  MUS_10          2.867361e+02
## 3941      excluded_file_list  MUS_10          2.867361e+02
## 3942      excluded_file_list  MUS_10          2.867361e+02
## 3943      excluded_file_list  MUS_10          2.867361e+02
## 3944      excluded_file_list  MUS_10          2.867361e+02
## 3945      excluded_file_list  MUS_10          2.867361e+02
## 3946      excluded_file_list  MUS_10          2.867361e+02
## 3947      excluded_file_list  MUS_10          2.867361e+02
## 3948      excluded_file_list  MUS_10          2.867361e+02
## 3949      excluded_file_list  MUS_10          2.867361e+02
## 3950      excluded_file_list  MUS_10          2.867361e+02
## 3951      excluded_file_list  MUS_10          2.867361e+02
## 3952     short_file_duration  MUS_10          5.555556e-01
## 3953     short_file_duration  SHO_01          6.944444e-03
## 3954      excluded_file_list  SHO_01          2.869722e+02
## 3955      excluded_file_list  SHO_01          2.869722e+02
## 3956      excluded_file_list  SHO_01          2.869722e+02
## 3957      excluded_file_list  SHO_01          2.869722e+02
## 3958      excluded_file_list  SHO_01          2.869722e+02
## 3959      excluded_file_list  SHO_01          2.869722e+02
## 3960      excluded_file_list  SHO_01          2.869722e+02
## 3961      excluded_file_list  SHO_01          2.869722e+02
## 3962      excluded_file_list  SHO_01          2.869722e+02
## 3963      excluded_file_list  SHO_01          2.869722e+02
## 3964      excluded_file_list  SHO_01          2.869722e+02
## 3965      excluded_file_list  SHO_01          2.869722e+02
## 3966      excluded_file_list  SHO_01          2.869722e+02
## 3967      excluded_file_list  SHO_01          2.869722e+02
## 3968      excluded_file_list  SHO_01          2.869722e+02
## 3969      excluded_file_list  SHO_01          2.869722e+02
## 3970      excluded_file_list  SHO_01          2.869722e+02
## 3971      excluded_file_list  SHO_01          2.869722e+02
## 3972      excluded_file_list  SHO_01          2.869722e+02
## 3973      excluded_file_list  SHO_01          2.869722e+02
## 3974      excluded_file_list  SHO_01          2.869722e+02
## 3975      excluded_file_list  SHO_01          2.869722e+02
## 3976      excluded_file_list  SHO_01          2.869722e+02
## 3977      excluded_file_list  SHO_01          2.869722e+02
## 3978      excluded_file_list  SHO_01          2.869722e+02
## 3979      excluded_file_list  SHO_01          2.869722e+02
## 3980      excluded_file_list  SHO_01          2.869722e+02
## 3981      excluded_file_list  SHO_01          2.869722e+02
## 3982      excluded_file_list  SHO_01          2.869722e+02
## 3983      excluded_file_list  SHO_01          2.869722e+02
## 3984      excluded_file_list  SHO_01          2.869722e+02
## 3985      excluded_file_list  SHO_01          2.869722e+02
## 3986      excluded_file_list  SHO_01          2.869722e+02
## 3987      excluded_file_list  SHO_01          2.869722e+02
## 3988      excluded_file_list  SHO_01          2.869722e+02
## 3989      excluded_file_list  SHO_01          2.869722e+02
## 3990      excluded_file_list  SHO_01          2.869722e+02
## 3991      excluded_file_list  SHO_01          2.869722e+02
## 3992      excluded_file_list  SHO_01          2.869722e+02
## 3993      excluded_file_list  SHO_01          2.869722e+02
## 3994      excluded_file_list  SHO_01          2.869722e+02
## 3995      excluded_file_list  SHO_01          2.869722e+02
## 3996      excluded_file_list  SHO_01          2.869722e+02
## 3997      excluded_file_list  SHO_01          2.869722e+02
## 3998      excluded_file_list  SHO_01          2.869722e+02
## 3999      excluded_file_list  SHO_01          2.869722e+02
## 4000      excluded_file_list  SHO_01          2.869722e+02
## 4001      excluded_file_list  SHO_01          2.869722e+02
## 4002      excluded_file_list  SHO_01          2.869722e+02
## 4003      excluded_file_list  SHO_01          2.869722e+02
## 4004      excluded_file_list  SHO_01          2.869722e+02
## 4005      excluded_file_list  SHO_01          2.869722e+02
## 4006      excluded_file_list  SHO_01          2.869722e+02
## 4007      excluded_file_list  SHO_01          2.869722e+02
## 4008      excluded_file_list  SHO_01          2.869722e+02
## 4009      excluded_file_list  SHO_01          2.869722e+02
## 4010      excluded_file_list  SHO_01          2.869722e+02
## 4011      excluded_file_list  SHO_01          2.869722e+02
## 4012      excluded_file_list  SHO_01          2.869375e+02
## 4013      excluded_file_list  SHO_01          2.869375e+02
## 4014      excluded_file_list  SHO_01          2.869375e+02
## 4015      excluded_file_list  SHO_01          2.869375e+02
## 4016      excluded_file_list  SHO_01          2.869375e+02
## 4017      excluded_file_list  SHO_01          2.869375e+02
## 4018      excluded_file_list  SHO_01          2.869375e+02
## 4019      excluded_file_list  SHO_01          2.869375e+02
## 4020      excluded_file_list  SHO_01          2.869375e+02
## 4021      excluded_file_list  SHO_01          2.869375e+02
## 4022      excluded_file_list  SHO_01          2.869375e+02
## 4023      excluded_file_list  SHO_01          2.869375e+02
## 4024      excluded_file_list  SHO_01          2.869375e+02
## 4025      excluded_file_list  SHO_01          2.869375e+02
## 4026      excluded_file_list  SHO_01          2.869375e+02
## 4027      excluded_file_list  SHO_01          2.869375e+02
## 4028      excluded_file_list  SHO_01          2.869375e+02
## 4029      excluded_file_list  SHO_01          2.869375e+02
## 4030      excluded_file_list  SHO_01          2.869375e+02
## 4031      excluded_file_list  SHO_01          2.869375e+02
## 4032      excluded_file_list  SHO_01          2.869375e+02
## 4033      excluded_file_list  SHO_01          2.869375e+02
## 4034      excluded_file_list  SHO_01          2.869375e+02
## 4035      excluded_file_list  SHO_01          2.869375e+02
## 4036      excluded_file_list  SHO_01          2.869375e+02
## 4037      excluded_file_list  SHO_01          2.869375e+02
## 4038      excluded_file_list  SHO_01          2.869375e+02
## 4039      excluded_file_list  SHO_01          2.869375e+02
## 4040      excluded_file_list  SHO_01          2.869375e+02
## 4041      excluded_file_list  SHO_01          2.869375e+02
## 4042      excluded_file_list  SHO_01          2.869375e+02
## 4043      excluded_file_list  SHO_01          2.869375e+02
## 4044      excluded_file_list  SHO_01          2.869375e+02
## 4045      excluded_file_list  SHO_01          2.869375e+02
## 4046      excluded_file_list  SHO_01          2.869375e+02
## 4047      excluded_file_list  SHO_01          2.869375e+02
## 4048      excluded_file_list  SHO_01          2.869375e+02
## 4049      excluded_file_list  SHO_01          2.869375e+02
## 4050      excluded_file_list  SHO_01          2.869375e+02
## 4051      excluded_file_list  SHO_01          2.869375e+02
## 4052      excluded_file_list  SHO_01          2.869375e+02
## 4053      excluded_file_list  SHO_01          2.869375e+02
## 4054      excluded_file_list  SHO_01          2.869375e+02
## 4055      excluded_file_list  SHO_01          2.869375e+02
## 4056      excluded_file_list  SHO_01          2.869375e+02
## 4057      excluded_file_list  SHO_01          2.869375e+02
## 4058      excluded_file_list  SHO_01          2.869375e+02
## 4059      excluded_file_list  SHO_01          2.869375e+02
## 4060      excluded_file_list  SHO_01          2.869375e+02
## 4061      excluded_file_list  SHO_01          2.869375e+02
## 4062      excluded_file_list  SHO_01          2.869375e+02
## 4063      excluded_file_list  SHO_01          2.869375e+02
## 4064      excluded_file_list  SHO_01          2.869375e+02
## 4065      excluded_file_list  SHO_01          2.869375e+02
## 4066      excluded_file_list  SHO_01          2.869028e+02
## 4067      excluded_file_list  SHO_01          2.869028e+02
## 4068      excluded_file_list  SHO_01          2.869028e+02
## 4069      excluded_file_list  SHO_01          2.869028e+02
## 4070      excluded_file_list  SHO_01          2.869028e+02
## 4071      excluded_file_list  SHO_01          2.869028e+02
## 4072      excluded_file_list  SHO_01          2.869028e+02
## 4073      excluded_file_list  SHO_01          2.869028e+02
## 4074      excluded_file_list  SHO_01          2.869028e+02
## 4075      excluded_file_list  SHO_01          2.869028e+02
## 4076      excluded_file_list  SHO_01          2.869028e+02
## 4077      excluded_file_list  SHO_01          2.869028e+02
## 4078      excluded_file_list  SHO_01          2.869028e+02
## 4079      excluded_file_list  SHO_01          2.869028e+02
## 4080      excluded_file_list  SHO_01          2.869028e+02
## 4081      excluded_file_list  SHO_01          2.869028e+02
## 4082      excluded_file_list  SHO_01          2.869028e+02
## 4083      excluded_file_list  SHO_01          2.869028e+02
## 4084      excluded_file_list  SHO_01          2.869028e+02
## 4085      excluded_file_list  SHO_01          2.869028e+02
## 4086      excluded_file_list  SHO_01          2.869028e+02
## 4087      excluded_file_list  SHO_01          2.869028e+02
## 4088      excluded_file_list  SHO_01          2.869028e+02
## 4089      excluded_file_list  SHO_01          2.869028e+02
## 4090      excluded_file_list  SHO_01          2.869028e+02
## 4091      excluded_file_list  SHO_01          2.869028e+02
## 4092      excluded_file_list  SHO_01          2.869028e+02
## 4093      excluded_file_list  SHO_01          2.869028e+02
## 4094      excluded_file_list  SHO_01          2.869028e+02
## 4095      excluded_file_list  SHO_01          2.869028e+02
## 4096      excluded_file_list  SHO_01          2.869028e+02
## 4097      excluded_file_list  SHO_01          2.869028e+02
## 4098      excluded_file_list  SHO_01          2.869028e+02
## 4099      excluded_file_list  SHO_01          2.869028e+02
## 4100      excluded_file_list  SHO_01          2.869028e+02
## 4101      excluded_file_list  SHO_01          2.869028e+02
## 4102      excluded_file_list  SHO_01          2.869028e+02
## 4103      excluded_file_list  SHO_01          2.869028e+02
## 4104      excluded_file_list  SHO_01          2.869028e+02
## 4105      excluded_file_list  SHO_01          2.869028e+02
## 4106      excluded_file_list  SHO_01          2.869028e+02
## 4107      excluded_file_list  SHO_01          2.869028e+02
## 4108      excluded_file_list  SHO_01          2.869028e+02
## 4109      excluded_file_list  SHO_01          2.869028e+02
## 4110      excluded_file_list  SHO_01          2.869028e+02
## 4111      excluded_file_list  SHO_01          2.869028e+02
## 4112      excluded_file_list  SHO_01          2.869028e+02
## 4113      excluded_file_list  SHO_01          2.869028e+02
## 4114      excluded_file_list  SHO_01          2.869028e+02
## 4115      excluded_file_list  SHO_01          2.869028e+02
## 4116      excluded_file_list  SHO_01          2.869028e+02
## 4117      excluded_file_list  SHO_01          2.869028e+02
## 4118      excluded_file_list  SHO_01          2.869028e+02
## 4119      excluded_file_list  SHO_01          2.869028e+02
## 4120      excluded_file_list  SHO_01          2.869028e+02
## 4121      excluded_file_list  SHO_01          2.869028e+02
## 4122      excluded_file_list  SHO_01          2.869028e+02
## 4123      excluded_file_list  SHO_01          2.869028e+02
## 4124      excluded_file_list  SHO_01          2.869028e+02
## 4125      excluded_file_list  SHO_01          2.869028e+02
## 4126      excluded_file_list  SHO_01          2.869028e+02
## 4127      excluded_file_list  SHO_01          2.869028e+02
## 4128      excluded_file_list  SHO_01          2.869028e+02
## 4129      excluded_file_list  SHO_01          2.869028e+02
## 4130      excluded_file_list  SHO_01          2.869028e+02
## 4131      excluded_file_list  SHO_01          2.869028e+02
## 4132      excluded_file_list  SHO_01          2.869028e+02
## 4133      excluded_file_list  SHO_01          2.869028e+02
## 4134      excluded_file_list  SHO_01          2.869028e+02
## 4135      excluded_file_list  SHO_01          2.869028e+02
## 4136      excluded_file_list  SHO_01          2.869028e+02
## 4137      excluded_file_list  SHO_01          2.869028e+02
## 4138      excluded_file_list  SHO_01          2.869028e+02
## 4139      excluded_file_list  SHO_01          2.869028e+02
## 4140      excluded_file_list  SHO_01          2.869028e+02
## 4141     short_file_duration  SHO_02          6.944444e-03
## 4142     short_file_duration  SHO_02          5.833333e-01
## 4143     short_file_duration  SHO_02          4.166667e-02
## 4144 excluded_household_list  SHO_03          2.599306e+01
## 4145 excluded_household_list  SHO_03          2.467361e+01
## 4146 excluded_household_list  SHO_03          2.467361e+01
## 4147 excluded_household_list  SHO_03          2.467361e+01
## 4148 excluded_household_list  SHO_03          2.467361e+01
## 4149 excluded_household_list  SHO_03          2.467361e+01
## 4150 excluded_household_list  SHO_03          2.467361e+01
## 4151 excluded_household_list  SHO_03          2.467361e+01
## 4152 excluded_household_list  SHO_03          2.467361e+01
## 4153 excluded_household_list  SHO_03          2.467361e+01
## 4154 excluded_household_list  SHO_03          1.299306e+01
## 4155 excluded_household_list  SHO_03          1.109028e+01
## 4156 excluded_household_list  SHO_03          1.109028e+01
## 4157 excluded_household_list  SHO_03          1.109028e+01
## 4158 excluded_household_list  SHO_03          1.109028e+01
## 4159 excluded_household_list  SHO_03          1.109028e+01
## 4160 excluded_household_list  SHO_03          1.109028e+01
## 4161 excluded_household_list  SHO_03          1.109028e+01
## 4162 excluded_household_list  SHO_03          1.109028e+01
## 4163 excluded_household_list  SHO_03          1.109028e+01
## 4164 excluded_household_list  SHO_03          1.299306e+01
## 4165 excluded_household_list  SHO_03          1.156944e+01
## 4166 excluded_household_list  SHO_03          1.156944e+01
## 4167 excluded_household_list  SHO_03          1.156944e+01
## 4168 excluded_household_list  SHO_03          1.156944e+01
## 4169 excluded_household_list  SHO_03          1.156944e+01
## 4170 excluded_household_list  SHO_03          1.156944e+01
## 4171 excluded_household_list  SHO_03          2.699306e+01
## 4172 excluded_household_list  SHO_03          2.533333e+01
## 4173 excluded_household_list  SHO_03          2.533333e+01
## 4174 excluded_household_list  SHO_03          2.533333e+01
## 4175 excluded_household_list  SHO_03          2.533333e+01
## 4176 excluded_household_list  SHO_03          2.533333e+01
## 4177 excluded_household_list  SHO_03          2.533333e+01
## 4178 excluded_household_list  SHO_03          2.533333e+01
## 4179 excluded_household_list  SHO_03          2.533333e+01
## 4180 excluded_household_list  SHO_03          2.533333e+01
## 4181 excluded_household_list  SHO_03          2.533333e+01
## 4182 excluded_household_list  SHO_03          2.533333e+01
## 4183 excluded_household_list  SHO_03          2.533333e+01
## 4184 excluded_household_list  SHO_03          2.533333e+01
## 4185 excluded_household_list  SHO_03          1.284722e+01
## 4186 excluded_household_list  SHO_03          1.284722e+01
## 4187 excluded_household_list  SHO_03          1.284722e+01
## 4188 excluded_household_list  SHO_03          1.284722e+01
## 4189 excluded_household_list  SHO_03          1.284722e+01
## 4190 excluded_household_list  SHO_03          1.284722e+01
## 4191 excluded_household_list  SHO_03          1.284722e+01
## 4192 excluded_household_list  SHO_03          1.284722e+01
## 4193 excluded_household_list  SHO_03          1.284722e+01
## 4194 excluded_household_list  SHO_03          1.284722e+01
## 4195     short_file_duration  SHO_03          6.250000e-02
## 4196 excluded_household_list  SHO_03          6.993056e+00
## 4197 excluded_household_list  SHO_03          2.527778e+00
## 4198 excluded_household_list  SHO_03          2.527778e+00
## 4199 excluded_household_list  SHO_03          2.527778e+00
## 4200 excluded_household_list  SHO_03          2.527778e+00
## 4201 excluded_household_list  SHO_03          1.250000e+01
## 4202 excluded_household_list  SHO_03          1.250000e+01
## 4203 excluded_household_list  SHO_03          1.250000e+01
## 4204 excluded_household_list  SHO_03          1.250000e+01
## 4205 excluded_household_list  SHO_03          1.250000e+01
## 4206 excluded_household_list  SHO_03          1.250000e+01
## 4207 excluded_household_list  SHO_03          1.250000e+01
## 4208 excluded_household_list  SHO_03          1.250000e+01
## 4209 excluded_household_list  SHO_03          1.250000e+01
## 4210 excluded_household_list  SHO_03          1.250000e+01
## 4211 excluded_household_list  SHO_03          1.250000e+01
## 4212 excluded_household_list  SHO_03          1.250000e+01
## 4213 excluded_household_list  SHO_03          1.250000e+01
## 4214 excluded_household_list  SHO_03          1.250000e+01
## 4215 excluded_household_list  SHO_03          1.250000e+01
## 4216 excluded_household_list  SHO_03          1.250000e+01
## 4217 excluded_household_list  SHO_03          1.250000e+01
## 4218 excluded_household_list  SHO_03          1.250000e+01
## 4219 excluded_household_list  SHO_03          1.250000e+01
## 4220 excluded_household_list  SHO_03          1.250000e+01
## 4221 excluded_household_list  SHO_03          1.250000e+01
## 4222 excluded_household_list  SHO_03          1.250000e+01
## 4223 excluded_household_list  SHO_03          1.250000e+01
## 4224 excluded_household_list  SHO_03          1.250000e+01
## 4225 excluded_household_list  SHO_03          1.250000e+01
## 4226 excluded_household_list  SHO_03          1.250000e+01
## 4227 excluded_household_list  SHO_03          1.250000e+01
## 4228 excluded_household_list  SHO_03          1.250000e+01
## 4229 excluded_household_list  SHO_03          1.250000e+01
## 4230 excluded_household_list  SHO_03          1.250000e+01
## 4231 excluded_household_list  SHO_03          1.250000e+01
## 4232 excluded_household_list  SHO_03          1.250000e+01
## 4233 excluded_household_list  SHO_03          1.250000e+01
## 4234 excluded_household_list  SHO_03          1.250000e+01
## 4235 excluded_household_list  SHO_03          1.250000e+01
## 4236 excluded_household_list  SHO_03          1.250000e+01
## 4237 excluded_household_list  SHO_03          1.250000e+01
## 4238 excluded_household_list  SHO_03          1.250000e+01
## 4239 excluded_household_list  SHO_03          1.250000e+01
## 4240 excluded_household_list  SHO_03          1.250000e+01
## 4241 excluded_household_list  SHO_03          1.250000e+01
## 4242 excluded_household_list  SHO_03          1.250000e+01
## 4243 excluded_household_list  SHO_03          1.250000e+01
## 4244 excluded_household_list  SHO_03          1.100000e+01
## 4245 excluded_household_list  SHO_03          1.100000e+01
## 4246 excluded_household_list  SHO_03          1.100000e+01
## 4247 excluded_household_list  SHO_03          1.100000e+01
## 4248 excluded_household_list  SHO_03          1.100000e+01
## 4249 excluded_household_list  SHO_03          1.100000e+01
## 4250 excluded_household_list  SHO_03          1.100000e+01
## 4251 excluded_household_list  SHO_03          1.100000e+01
## 4252 excluded_household_list  SHO_03          1.100000e+01
## 4253 excluded_household_list  SHO_03          1.100000e+01
## 4254 excluded_household_list  SHO_03          1.100000e+01
## 4255 excluded_household_list  SHO_03          1.100000e+01
## 4256 excluded_household_list  SHO_03          1.100000e+01
## 4257 excluded_household_list  SHO_03          1.100000e+01
## 4258 excluded_household_list  SHO_03          5.972222e+00
## 4259 excluded_household_list  SHO_03          5.972222e+00
## 4260 excluded_household_list  SHO_03          5.972222e+00
## 4261 excluded_household_list  SHO_03          5.972222e+00
## 4262 excluded_household_list  SHO_03          5.972222e+00
## 4263 excluded_household_list  SHO_03          5.972222e+00
## 4264 excluded_household_list  SHO_03          5.972222e+00
## 4265 excluded_household_list  SHO_03          5.972222e+00
## 4266 excluded_household_list  SHO_03          5.972222e+00
## 4267 excluded_household_list  SHO_03          5.972222e+00
## 4268 excluded_household_list  SHO_03          5.972222e+00
## 4269 excluded_household_list  SHO_03          5.972222e+00
## 4270 excluded_household_list  SHO_03          5.972222e+00
## 4271 excluded_household_list  SHO_03          5.972222e+00
## 4272 excluded_household_list  SHO_03          5.972222e+00
## 4273 excluded_household_list  SHO_03          5.972222e+00
## 4274 excluded_household_list  SHO_03          5.972222e+00
## 4275 excluded_household_list  SHO_03          5.972222e+00
## 4276 excluded_household_list  SHO_03          5.972222e+00
## 4277 excluded_household_list  SHO_03          5.972222e+00
## 4278 excluded_household_list  SHO_03          5.972222e+00
## 4279 excluded_household_list  SHO_03          5.972222e+00
## 4280 excluded_household_list  SHO_03          5.972222e+00
## 4281 excluded_household_list  SHO_03          3.493056e+00
## 4282 excluded_household_list  SHO_03          3.493056e+00
## 4283 excluded_household_list  SHO_03          3.493056e+00
## 4284 excluded_household_list  SHO_03          3.493056e+00
## 4285 excluded_household_list  SHO_03          3.493056e+00
## 4286 excluded_household_list  SHO_04          1.305556e+01
## 4287 excluded_household_list  SHO_04          1.305556e+01
## 4288 excluded_household_list  SHO_04          1.305556e+01
## 4289 excluded_household_list  SHO_04          1.305556e+01
## 4290 excluded_household_list  SHO_04          1.305556e+01
## 4291 excluded_household_list  SHO_04          1.305556e+01
## 4292 excluded_household_list  SHO_04          1.305556e+01
## 4293 excluded_household_list  SHO_04          1.305556e+01
## 4294 excluded_household_list  SHO_04          1.305556e+01
## 4295 excluded_household_list  SHO_04          1.305556e+01
## 4296 excluded_household_list  SHO_04          1.305556e+01
## 4297 excluded_household_list  SHO_04          1.305556e+01
## 4298 excluded_household_list  SHO_04          1.305556e+01
## 4299 excluded_household_list  SHO_04          1.305556e+01
## 4300 excluded_household_list  SHO_04          1.305556e+01
## 4301 excluded_household_list  SHO_04          1.305556e+01
## 4302 excluded_household_list  SHO_04          1.305556e+01
## 4303 excluded_household_list  SHO_04          1.305556e+01
## 4304 excluded_household_list  SHO_04          1.305556e+01
## 4305 excluded_household_list  SHO_04          1.305556e+01
## 4306 excluded_household_list  SHO_04          1.305556e+01
## 4307 excluded_household_list  SHO_04          1.305556e+01
## 4308 excluded_household_list  SHO_04          4.027778e+00
## 4309 excluded_household_list  SHO_04          4.027778e+00
## 4310 excluded_household_list  SHO_04          4.027778e+00
## 4311 excluded_household_list  SHO_04          4.027778e+00
## 4312 excluded_household_list  SHO_04          4.027778e+00
## 4313 excluded_household_list  SHO_04          4.027778e+00
## 4314 excluded_household_list  SHO_04          4.027778e+00
## 4315 excluded_household_list  SHO_04          4.027778e+00
## 4316 excluded_household_list  SHO_04          4.027778e+00
## 4317 excluded_household_list  SHO_04          4.027778e+00
## 4318 excluded_household_list  SHO_04          4.027778e+00
## 4319 excluded_household_list  SHO_04          1.244444e+01
## 4320 excluded_household_list  SHO_04          1.244444e+01
## 4321 excluded_household_list  SHO_04          1.244444e+01
## 4322 excluded_household_list  SHO_04          1.244444e+01
## 4323 excluded_household_list  SHO_04          1.244444e+01
## 4324 excluded_household_list  SHO_04          1.244444e+01
## 4325 excluded_household_list  SHO_04          1.244444e+01
## 4326 excluded_household_list  SHO_04          1.244444e+01
## 4327 excluded_household_list  SHO_04          1.244444e+01
## 4328 excluded_household_list  SHO_04          1.244444e+01
## 4329 excluded_household_list  SHO_04          1.244444e+01
## 4330 excluded_household_list  SHO_04          1.244444e+01
## 4331 excluded_household_list  SHO_04          1.244444e+01
## 4332 excluded_household_list  SHO_04          1.244444e+01
## 4333 excluded_household_list  SHO_04          1.244444e+01
## 4334 excluded_household_list  SHO_04          1.244444e+01
## 4335 excluded_household_list  SHO_04          1.244444e+01
## 4336 excluded_household_list  SHO_04          1.244444e+01
## 4337 excluded_household_list  SHO_04          1.244444e+01
## 4338 excluded_household_list  SHO_04          1.244444e+01
## 4339 excluded_household_list  SHO_04          1.244444e+01
## 4340 excluded_household_list  SHO_04          1.244444e+01
## 4341 excluded_household_list  SHO_04          1.244444e+01
## 4342 excluded_household_list  SHO_04          1.244444e+01
## 4343 excluded_household_list  SHO_04          1.244444e+01
## 4344 excluded_household_list  SHO_04          1.244444e+01
## 4345 excluded_household_list  SHO_04          1.244444e+01
## 4346 excluded_household_list  SHO_04          1.244444e+01
## 4347 excluded_household_list  SHO_04          1.244444e+01
## 4348 excluded_household_list  SHO_04          1.244444e+01
## 4349 excluded_household_list  SHO_04          1.244444e+01
## 4350 excluded_household_list  SHO_04          1.244444e+01
## 4351 excluded_household_list  SHO_04          1.244444e+01
## 4352 excluded_household_list  SHO_04          1.244444e+01
## 4353 excluded_household_list  SHO_04          8.840278e+00
## 4354 excluded_household_list  SHO_04          8.840278e+00
## 4355 excluded_household_list  SHO_04          8.840278e+00
## 4356 excluded_household_list  SHO_04          8.840278e+00
## 4357 excluded_household_list  SHO_04          8.840278e+00
## 4358 excluded_household_list  SHO_04          8.840278e+00
## 4359 excluded_household_list  SHO_04          8.840278e+00
## 4360     short_file_duration  SHO_04          2.777778e-02
## 4361 excluded_household_list  SHO_04          1.204167e+01
## 4362 excluded_household_list  SHO_04          1.204167e+01
## 4363 excluded_household_list  SHO_04          1.204167e+01
## 4364 excluded_household_list  SHO_04          1.204167e+01
## 4365 excluded_household_list  SHO_04          1.204167e+01
## 4366 excluded_household_list  SHO_04          1.204167e+01
## 4367 excluded_household_list  SHO_04          1.204167e+01
## 4368 excluded_household_list  SHO_04          1.204167e+01
## 4369 excluded_household_list  SHO_04          1.204167e+01
## 4370 excluded_household_list  SHO_04          1.204167e+01
## 4371 excluded_household_list  SHO_04          1.204167e+01
## 4372 excluded_household_list  SHO_04          1.204167e+01
## 4373 excluded_household_list  SHO_04          1.204167e+01
## 4374 excluded_household_list  SHO_04          1.204167e+01
## 4375 excluded_household_list  SHO_04          1.204167e+01
## 4376 excluded_household_list  SHO_04          1.204167e+01
## 4377 excluded_household_list  SHO_04          1.204167e+01
## 4378 excluded_household_list  SHO_04          1.204167e+01
## 4379 excluded_household_list  SHO_04          1.204167e+01
## 4380 excluded_household_list  SHO_04          1.204167e+01
## 4381 excluded_household_list  SHO_04          1.204167e+01
## 4382 excluded_household_list  SHO_04          1.204167e+01
## 4383 excluded_household_list  SHO_04          1.204167e+01
## 4384 excluded_household_list  SHO_04          1.204167e+01
## 4385 excluded_household_list  SHO_04          1.204167e+01
## 4386 excluded_household_list  SHO_04          1.204167e+01
## 4387 excluded_household_list  SHO_04          1.204167e+01
## 4388 excluded_household_list  SHO_04          1.204167e+01
## 4389 excluded_household_list  SHO_04          1.204167e+01
## 4390 excluded_household_list  SHO_04          1.804167e+01
## 4391 excluded_household_list  SHO_04          1.804167e+01
## 4392 excluded_household_list  SHO_04          1.804167e+01
## 4393 excluded_household_list  SHO_04          1.804167e+01
## 4394 excluded_household_list  SHO_04          1.804167e+01
## 4395 excluded_household_list  SHO_04          1.804167e+01
## 4396 excluded_household_list  SHO_04          1.804167e+01
## 4397 excluded_household_list  SHO_04          1.804167e+01
## 4398 excluded_household_list  SHO_04          1.804167e+01
## 4399 excluded_household_list  SHO_04          1.804167e+01
## 4400 excluded_household_list  SHO_04          1.804167e+01
## 4401 excluded_household_list  SHO_04          1.804167e+01
## 4402 excluded_household_list  SHO_04          1.804167e+01
## 4403 excluded_household_list  SHO_04          1.804167e+01
## 4404 excluded_household_list  SHO_04          1.804167e+01
## 4405 excluded_household_list  SHO_04          1.804167e+01
## 4406 excluded_household_list  SHO_04          1.804167e+01
## 4407 excluded_household_list  SHO_04          1.804167e+01
## 4408 excluded_household_list  SHO_04          1.804167e+01
## 4409 excluded_household_list  SHO_04          1.804167e+01
## 4410 excluded_household_list  SHO_04          1.804167e+01
## 4411 excluded_household_list  SHO_04          1.804167e+01
## 4412 excluded_household_list  SHO_04          1.405556e+01
## 4413 excluded_household_list  SHO_04          1.405556e+01
## 4414 excluded_household_list  SHO_04          1.405556e+01
## 4415 excluded_household_list  SHO_04          1.405556e+01
## 4416 excluded_household_list  SHO_04          1.405556e+01
## 4417 excluded_household_list  SHO_04          1.405556e+01
## 4418 excluded_household_list  SHO_04          1.405556e+01
## 4419 excluded_household_list  SHO_04          1.405556e+01
## 4420 excluded_household_list  SHO_04          1.405556e+01
## 4421 excluded_household_list  SHO_04          1.405556e+01
## 4422 excluded_household_list  SHO_04          1.405556e+01
## 4423 excluded_household_list  SHO_04          1.405556e+01
## 4424 excluded_household_list  SHO_04          1.405556e+01
## 4425 excluded_household_list  SHO_04          1.405556e+01
## 4426 excluded_household_list  SHO_04          1.405556e+01
## 4427 excluded_household_list  SHO_04          1.405556e+01
## 4428 excluded_household_list  SHO_04          1.405556e+01
## 4429 excluded_household_list  SHO_04          1.405556e+01
## 4430 excluded_household_list  SHO_04          1.405556e+01
## 4431 excluded_household_list  SHO_04          1.405556e+01
## 4432 excluded_household_list  SHO_04          1.405556e+01
## 4433 excluded_household_list  SHO_04          1.405556e+01
## 4434 excluded_household_list  SHO_04          1.405556e+01
## 4435 excluded_household_list  SHO_04          1.947917e+01
## 4436 excluded_household_list  SHO_04          1.947917e+01
## 4437 excluded_household_list  SHO_04          1.947917e+01
## 4438 excluded_household_list  SHO_04          1.947917e+01
## 4439 excluded_household_list  SHO_04          1.947917e+01
## 4440 excluded_household_list  SHO_04          1.947917e+01
## 4441 excluded_household_list  SHO_04          1.947917e+01
## 4442 excluded_household_list  SHO_04          1.947917e+01
## 4443 excluded_household_list  SHO_04          1.947917e+01
## 4444 excluded_household_list  SHO_04          1.947917e+01
## 4445 excluded_household_list  SHO_04          1.947917e+01
## 4446 excluded_household_list  SHO_04          1.947917e+01
## 4447 excluded_household_list  SHO_04          1.947917e+01
## 4448 excluded_household_list  SHO_04          1.947917e+01
## 4449 excluded_household_list  SHO_04          1.947917e+01
## 4450 excluded_household_list  SHO_04          1.947917e+01
## 4451 excluded_household_list  SHO_04          1.947917e+01
## 4452 excluded_household_list  SHO_04          1.947917e+01
## 4453 excluded_household_list  SHO_04          1.947917e+01
## 4454 excluded_household_list  SHO_04          1.947917e+01
## 4455 excluded_household_list  SHO_04          1.947917e+01
## 4456 excluded_household_list  SHO_04          1.947917e+01
## 4457 excluded_household_list  SHO_04          1.947917e+01
## 4458 excluded_household_list  SHO_04          1.947917e+01
## 4459 excluded_household_list  SHO_04          1.947917e+01
## 4460 excluded_household_list  SHO_04          1.947917e+01
## 4461 excluded_household_list  SHO_04          1.947917e+01
## 4462 excluded_household_list  SHO_04          1.947917e+01
## 4463 excluded_household_list  SHO_04          1.947917e+01
## 4464 excluded_household_list  SHO_04          1.947917e+01
## 4465 excluded_household_list  SHO_04          1.299306e+01
## 4466 excluded_household_list  SHO_04          1.222917e+01
## 4467 excluded_household_list  SHO_04          1.222917e+01
## 4468 excluded_household_list  SHO_04          1.222917e+01
## 4469 excluded_household_list  SHO_04          1.222917e+01
## 4470 excluded_household_list  SHO_04          1.222917e+01
## 4471 excluded_household_list  SHO_04          1.222917e+01
## 4472 excluded_household_list  SHO_04          1.222917e+01
## 4473 excluded_household_list  SHO_04          1.222917e+01
## 4474 excluded_household_list  SHO_04          1.090278e+01
## 4475 excluded_household_list  SHO_04          1.090278e+01
## 4476 excluded_household_list  SHO_04          1.090278e+01
## 4477 excluded_household_list  SHO_04          1.090278e+01
## 4478 excluded_household_list  SHO_04          1.090278e+01
## 4479 excluded_household_list  SHO_04          1.090278e+01
## 4480 excluded_household_list  SHO_04          1.090278e+01
## 4481 excluded_household_list  SHO_04          1.090278e+01
## 4482 excluded_household_list  SHO_04          1.090278e+01
## 4483 excluded_household_list  SHO_04          1.090278e+01
## 4484 excluded_household_list  SHO_04          1.090278e+01
## 4485 excluded_household_list  SHO_04          1.090278e+01
## 4486 excluded_household_list  SHO_04          1.090278e+01
## 4487 excluded_household_list  SHO_04          1.090278e+01
## 4488 excluded_household_list  SHO_04          1.090278e+01
## 4489 excluded_household_list  SHO_04          1.090278e+01
## 4490 excluded_household_list  SHO_04          1.090278e+01
## 4491 excluded_household_list  SHO_04          1.090278e+01
## 4492 excluded_household_list  SHO_04          1.090278e+01
## 4493 excluded_household_list  SHO_04          7.006944e+00
## 4494 excluded_household_list  SHO_04          7.006944e+00
## 4495 excluded_household_list  SHO_04          7.006944e+00
## 4496 excluded_household_list  SHO_04          7.006944e+00
## 4497 excluded_household_list  SHO_04          7.006944e+00
## 4498 excluded_household_list  SHO_04          7.006944e+00
## 4499 excluded_household_list  SHO_04          7.006944e+00
## 4500 excluded_household_list  SHO_04          7.006944e+00
## 4501 excluded_household_list  SHO_04          7.006944e+00
## 4502 excluded_household_list  SHO_04          5.652778e+00
## 4503 excluded_household_list  SHO_04          5.652778e+00
## 4504 excluded_household_list  SHO_04          5.652778e+00
## 4505 excluded_household_list  SHO_04          5.652778e+00
## 4506 excluded_household_list  SHO_04          5.652778e+00
## 4507 excluded_household_list  SHO_04          5.652778e+00
## 4508 excluded_household_list  SHO_04          5.652778e+00
## 4509 excluded_household_list  SHO_04          5.652778e+00
## 4510 excluded_household_list  SHO_04          5.652778e+00
## 4511 excluded_household_list  SHO_04          5.652778e+00
## 4512 excluded_household_list  SHO_04          5.652778e+00
## 4513 excluded_household_list  SHO_04          5.652778e+00
## 4514 excluded_household_list  SHO_04          5.652778e+00
## 4515     short_file_duration  SHO_04          1.250000e-01
## 4516     short_file_duration  SHO_04          1.250000e-01
## 4517                      ok  SHO_05          1.145833e+01
## 4518                      ok  SHO_05          1.145833e+01
## 4519                      ok  SHO_05          1.145833e+01
## 4520                      ok  SHO_05          1.145833e+01
## 4521                      ok  SHO_05          1.145833e+01
## 4522                      ok  SHO_05          1.145833e+01
## 4523                      ok  SHO_05          1.145833e+01
## 4524                      ok  SHO_05          1.145833e+01
## 4525                      ok  SHO_05          1.145833e+01
## 4526                      ok  SHO_05          1.145833e+01
## 4527                      ok  SHO_05          1.145833e+01
## 4528                      ok  SHO_05          1.145833e+01
## 4529                      ok  SHO_05          1.145833e+01
## 4530                      ok  SHO_05          1.145833e+01
## 4531                      ok  SHO_05          1.145833e+01
## 4532                      ok  SHO_05          1.145833e+01
## 4533                      ok  SHO_05          1.145833e+01
## 4534                      ok  SHO_05          1.145833e+01
## 4535                      ok  SHO_05          1.145833e+01
## 4536                      ok  SHO_05          1.145833e+01
## 4537                      ok  SHO_05          1.145833e+01
## 4538                      ok  SHO_05          1.145833e+01
## 4539                      ok  SHO_05          1.145833e+01
## 4540                      ok  SHO_05          1.145833e+01
## 4541                      ok  SHO_05          1.145833e+01
## 4542                      ok  SHO_05          1.145833e+01
## 4543                      ok  SHO_05          1.263889e+01
## 4544                      ok  SHO_05          1.263889e+01
## 4545                      ok  SHO_05          1.263889e+01
## 4546                      ok  SHO_05          1.263889e+01
## 4547                      ok  SHO_05          1.263889e+01
## 4548                      ok  SHO_05          1.263889e+01
## 4549                      ok  SHO_05          1.263889e+01
## 4550                      ok  SHO_05          1.263889e+01
## 4551                      ok  SHO_05          1.263889e+01
## 4552                      ok  SHO_05          1.263889e+01
## 4553                      ok  SHO_05          1.263889e+01
## 4554                      ok  SHO_05          1.263889e+01
## 4555                      ok  SHO_05          1.263889e+01
## 4556                      ok  SHO_05          1.263889e+01
## 4557                      ok  SHO_05          1.263889e+01
## 4558                      ok  SHO_05          1.263889e+01
## 4559                      ok  SHO_05          1.263889e+01
## 4560                      ok  SHO_05          1.263889e+01
## 4561                      ok  SHO_05          1.263889e+01
## 4562                      ok  SHO_05          1.263889e+01
## 4563                      ok  SHO_05          1.263889e+01
## 4564                      ok  SHO_05          1.263889e+01
## 4565                      ok  SHO_05          1.263889e+01
## 4566                      ok  SHO_05          1.263889e+01
## 4567                      ok  SHO_05          1.263889e+01
## 4568                      ok  SHO_05          1.263889e+01
## 4569                      ok  SHO_05          1.263889e+01
## 4570                      ok  SHO_05          1.263889e+01
## 4571                      ok  SHO_05          1.263889e+01
## 4572                      ok  SHO_05          1.263889e+01
## 4573                      ok  SHO_05          1.263889e+01
## 4574                      ok  SHO_05          1.263889e+01
## 4575                      ok  SHO_05          1.263889e+01
## 4576                      ok  SHO_05          1.263889e+01
## 4577                      ok  SHO_05          1.263889e+01
## 4578                      ok  SHO_05          1.263889e+01
## 4579                      ok  SHO_05          1.263889e+01
## 4580                      ok  SHO_05          1.261111e+01
## 4581                      ok  SHO_05          1.261111e+01
## 4582                      ok  SHO_05          1.261111e+01
## 4583                      ok  SHO_05          1.261111e+01
## 4584                      ok  SHO_05          1.261111e+01
## 4585                      ok  SHO_05          1.261111e+01
## 4586                      ok  SHO_05          1.261111e+01
## 4587                      ok  SHO_05          1.261111e+01
## 4588                      ok  SHO_05          1.261111e+01
## 4589                      ok  SHO_05          1.261111e+01
## 4590                      ok  SHO_05          1.261111e+01
## 4591                      ok  SHO_05          1.261111e+01
## 4592                      ok  SHO_05          1.261111e+01
## 4593                      ok  SHO_05          1.261111e+01
## 4594                      ok  SHO_05          1.261111e+01
## 4595                      ok  SHO_05          1.261111e+01
## 4596                      ok  SHO_05          1.261111e+01
## 4597                      ok  SHO_05          1.261111e+01
## 4598                      ok  SHO_05          1.261111e+01
## 4599                      ok  SHO_05          1.261111e+01
## 4600                      ok  SHO_05          1.261111e+01
## 4601                      ok  SHO_05          1.261111e+01
## 4602                      ok  SHO_05          1.261111e+01
## 4603                      ok  SHO_05          1.261111e+01
## 4604                      ok  SHO_05          1.261111e+01
## 4605                      ok  SHO_05          1.261111e+01
## 4606                      ok  SHO_05          1.261111e+01
## 4607                      ok  SHO_05          1.148611e+01
## 4608                      ok  SHO_05          1.148611e+01
## 4609                      ok  SHO_05          1.148611e+01
## 4610                      ok  SHO_05          1.148611e+01
## 4611                      ok  SHO_05          1.148611e+01
## 4612                      ok  SHO_05          1.148611e+01
## 4613                      ok  SHO_05          1.148611e+01
## 4614                      ok  SHO_05          1.148611e+01
## 4615                      ok  SHO_05          1.148611e+01
## 4616                      ok  SHO_05          1.148611e+01
## 4617                      ok  SHO_05          1.148611e+01
## 4618                      ok  SHO_05          1.148611e+01
## 4619                      ok  SHO_05          1.148611e+01
## 4620                      ok  SHO_05          1.148611e+01
## 4621                      ok  SHO_05          1.148611e+01
## 4622                      ok  SHO_05          1.148611e+01
## 4623                      ok  SHO_05          1.148611e+01
## 4624                      ok  SHO_05          1.148611e+01
## 4625                      ok  SHO_05          1.148611e+01
## 4626                      ok  SHO_05          1.148611e+01
## 4627                      ok  SHO_05          1.148611e+01
## 4628                      ok  SHO_05          1.148611e+01
## 4629                      ok  SHO_05          1.148611e+01
## 4630                      ok  SHO_05          1.148611e+01
## 4631                      ok  SHO_05          1.148611e+01
## 4632                      ok  SHO_05          1.148611e+01
## 4633                      ok  SHO_05          1.148611e+01
## 4634                      ok  SHO_05          1.148611e+01
## 4635                      ok  SHO_05          1.148611e+01
## 4636                      ok  SHO_05          1.127083e+01
## 4637                      ok  SHO_05          1.127083e+01
## 4638                      ok  SHO_05          1.127083e+01
## 4639                      ok  SHO_05          1.127083e+01
## 4640                      ok  SHO_05          1.127083e+01
## 4641                      ok  SHO_05          1.127083e+01
## 4642                      ok  SHO_05          1.127083e+01
## 4643                      ok  SHO_05          1.127083e+01
## 4644                      ok  SHO_05          1.127083e+01
## 4645                      ok  SHO_05          1.127083e+01
## 4646                      ok  SHO_05          1.127083e+01
## 4647                      ok  SHO_05          1.127083e+01
## 4648                      ok  SHO_05          1.127083e+01
## 4649                      ok  SHO_05          1.127083e+01
## 4650                      ok  SHO_05          1.127083e+01
## 4651                      ok  SHO_05          1.127083e+01
## 4652                      ok  SHO_05          1.127083e+01
## 4653                      ok  SHO_05          1.127083e+01
## 4654                      ok  SHO_05          1.127083e+01
## 4655                      ok  SHO_05          1.127083e+01
## 4656                      ok  SHO_05          1.127083e+01
## 4657                      ok  SHO_05          1.127083e+01
## 4658                      ok  SHO_05          1.127083e+01
## 4659                      ok  SHO_05          1.127083e+01
## 4660                      ok  SHO_05          1.127083e+01
## 4661                      ok  SHO_05          1.127083e+01
## 4662                      ok  SHO_05          2.298611e+00
## 4663                      ok  SHO_05          2.298611e+00
## 4664                      ok  SHO_05          2.298611e+00
## 4665                      ok  SHO_05          2.298611e+00
## 4666                      ok  SHO_05          2.298611e+00
## 4667                      ok  SHO_05          2.298611e+00
## 4668                      ok  SHO_05          2.298611e+00
## 4669                      ok  SHO_05          2.236111e+00
## 4670                      ok  SHO_05          2.236111e+00
## 4671                      ok  SHO_05          2.236111e+00
## 4672                      ok  SHO_05          2.236111e+00
## 4673                      ok  SHO_05          2.236111e+00
## 4674                      ok  SHO_05          2.236111e+00
## 4675                      ok  SHO_05          2.236111e+00
## 4676     short_file_duration  SHO_06          6.944444e-02
## 4677      excluded_file_list  SHO_06          2.869931e+02
## 4678      excluded_file_list  SHO_06          2.869931e+02
## 4679      excluded_file_list  SHO_06          2.869931e+02
## 4680      excluded_file_list  SHO_06          2.869931e+02
## 4681      excluded_file_list  SHO_06          2.869931e+02
## 4682      excluded_file_list  SHO_06          2.869931e+02
## 4683      excluded_file_list  SHO_06          2.869931e+02
## 4684      excluded_file_list  SHO_06          2.869931e+02
## 4685      excluded_file_list  SHO_06          2.869931e+02
## 4686      excluded_file_list  SHO_06          2.869931e+02
## 4687      excluded_file_list  SHO_06          2.869931e+02
## 4688      excluded_file_list  SHO_06          2.869931e+02
## 4689      excluded_file_list  SHO_06          2.869931e+02
## 4690      excluded_file_list  SHO_06          2.869931e+02
## 4691      excluded_file_list  SHO_06          2.869931e+02
## 4692      excluded_file_list  SHO_06          2.869931e+02
## 4693      excluded_file_list  SHO_06          2.869931e+02
## 4694      excluded_file_list  SHO_06          2.869931e+02
## 4695      excluded_file_list  SHO_06          2.869931e+02
## 4696      excluded_file_list  SHO_06          2.869931e+02
## 4697      excluded_file_list  SHO_06          2.869931e+02
## 4698      excluded_file_list  SHO_06          2.869931e+02
## 4699      excluded_file_list  SHO_06          2.869931e+02
## 4700      excluded_file_list  SHO_06          2.869931e+02
## 4701      excluded_file_list  SHO_06          2.869931e+02
## 4702      excluded_file_list  SHO_06          2.869931e+02
## 4703      excluded_file_list  SHO_06          2.869931e+02
## 4704      excluded_file_list  SHO_06          2.869931e+02
## 4705      excluded_file_list  SHO_06          2.869931e+02
## 4706      excluded_file_list  SHO_06          2.869931e+02
## 4707      excluded_file_list  SHO_06          2.869931e+02
## 4708      excluded_file_list  SHO_06          2.869931e+02
## 4709      excluded_file_list  SHO_06          2.869931e+02
## 4710      excluded_file_list  SHO_06          2.869931e+02
## 4711      excluded_file_list  SHO_06          2.869931e+02
## 4712      excluded_file_list  SHO_06          2.869931e+02
## 4713      excluded_file_list  SHO_06          2.869931e+02
## 4714      excluded_file_list  SHO_06          2.869931e+02
## 4715      excluded_file_list  SHO_06          2.869931e+02
## 4716      excluded_file_list  SHO_06          2.869931e+02
## 4717      excluded_file_list  SHO_06          2.869931e+02
## 4718      excluded_file_list  SHO_06          2.869931e+02
## 4719      excluded_file_list  SHO_06          2.869931e+02
## 4720      excluded_file_list  SHO_06          2.869931e+02
## 4721      excluded_file_list  SHO_06          2.869931e+02
## 4722      excluded_file_list  SHO_06          2.869931e+02
## 4723      excluded_file_list  SHO_06          2.869931e+02
## 4724      excluded_file_list  SHO_06          2.869931e+02
## 4725      excluded_file_list  SHO_06          2.869931e+02
## 4726      excluded_file_list  SHO_06          2.869931e+02
## 4727      excluded_file_list  SHO_06          2.869931e+02
## 4728      excluded_file_list  SHO_06          2.869931e+02
## 4729      excluded_file_list  SHO_06          2.869931e+02
## 4730      excluded_file_list  SHO_06          2.869931e+02
## 4731      excluded_file_list  SHO_06          2.867292e+02
## 4732      excluded_file_list  SHO_06          2.867292e+02
## 4733      excluded_file_list  SHO_06          2.867292e+02
## 4734      excluded_file_list  SHO_06          2.867292e+02
## 4735      excluded_file_list  SHO_06          2.867292e+02
## 4736      excluded_file_list  SHO_06          2.867292e+02
## 4737      excluded_file_list  SHO_06          2.867292e+02
## 4738      excluded_file_list  SHO_06          2.867292e+02
## 4739      excluded_file_list  SHO_06          2.867292e+02
## 4740      excluded_file_list  SHO_06          2.867292e+02
## 4741      excluded_file_list  SHO_06          2.867292e+02
## 4742      excluded_file_list  SHO_06          2.867292e+02
## 4743      excluded_file_list  SHO_06          2.867292e+02
## 4744      excluded_file_list  SHO_06          2.867292e+02
## 4745      excluded_file_list  SHO_06          2.867292e+02
## 4746      excluded_file_list  SHO_06          2.867292e+02
## 4747      excluded_file_list  SHO_06          2.867292e+02
## 4748      excluded_file_list  SHO_06          2.867292e+02
## 4749      excluded_file_list  SHO_06          2.867292e+02
## 4750      excluded_file_list  SHO_06          2.867292e+02
## 4751      excluded_file_list  SHO_06          2.867292e+02
## 4752      excluded_file_list  SHO_06          2.867292e+02
## 4753      excluded_file_list  SHO_06          2.867292e+02
## 4754      excluded_file_list  SHO_06          2.867292e+02
## 4755      excluded_file_list  SHO_06          2.867292e+02
## 4756      excluded_file_list  SHO_06          2.867292e+02
## 4757      excluded_file_list  SHO_06          2.867292e+02
## 4758      excluded_file_list  SHO_06          2.867292e+02
## 4759      excluded_file_list  SHO_06          2.867292e+02
## 4760      excluded_file_list  SHO_06          2.867292e+02
## 4761      excluded_file_list  SHO_06          2.869514e+02
## 4762      excluded_file_list  SHO_06          2.869514e+02
## 4763      excluded_file_list  SHO_06          2.869514e+02
## 4764      excluded_file_list  SHO_06          2.869514e+02
## 4765      excluded_file_list  SHO_06          2.869514e+02
## 4766      excluded_file_list  SHO_06          2.869514e+02
## 4767      excluded_file_list  SHO_06          2.869514e+02
## 4768      excluded_file_list  SHO_06          2.869514e+02
## 4769      excluded_file_list  SHO_06          2.869514e+02
## 4770      excluded_file_list  SHO_06          2.869514e+02
## 4771      excluded_file_list  SHO_06          2.869514e+02
## 4772      excluded_file_list  SHO_06          2.869514e+02
## 4773      excluded_file_list  SHO_06          2.869514e+02
## 4774      excluded_file_list  SHO_06          2.869514e+02
## 4775      excluded_file_list  SHO_06          2.869514e+02
## 4776      excluded_file_list  SHO_06          2.869514e+02
## 4777      excluded_file_list  SHO_06          2.869514e+02
## 4778      excluded_file_list  SHO_06          2.869514e+02
## 4779      excluded_file_list  SHO_06          2.869514e+02
## 4780      excluded_file_list  SHO_06          2.869514e+02
## 4781      excluded_file_list  SHO_06          2.869514e+02
## 4782      excluded_file_list  SHO_06          2.869514e+02
## 4783      excluded_file_list  SHO_06          2.869514e+02
## 4784      excluded_file_list  SHO_06          2.869514e+02
## 4785      excluded_file_list  SHO_06          2.869514e+02
## 4786      excluded_file_list  SHO_06          2.869514e+02
## 4787      excluded_file_list  SHO_06          2.869514e+02
## 4788      excluded_file_list  SHO_06          2.869514e+02
## 4789      excluded_file_list  SHO_06          2.869514e+02
## 4790      excluded_file_list  SHO_06          2.869514e+02
## 4791      excluded_file_list  SHO_06          2.869514e+02
## 4792      excluded_file_list  SHO_06          2.869514e+02
## 4793      excluded_file_list  SHO_06          2.869514e+02
## 4794      excluded_file_list  SHO_06          2.869514e+02
## 4795      excluded_file_list  SHO_06          2.869514e+02
## 4796      excluded_file_list  SHO_06          2.869514e+02
## 4797      excluded_file_list  SHO_06          2.869514e+02
## 4798      excluded_file_list  SHO_06          2.869514e+02
## 4799      excluded_file_list  SHO_06          2.869514e+02
## 4800      excluded_file_list  SHO_06          2.869514e+02
## 4801     short_file_duration  SHO_07          9.027778e-02
## 4802     short_file_duration  SHO_07          9.027778e-02
## 4803     short_file_duration  SHO_07          9.027778e-02
## 4804                 ambient  SHO_07          3.099306e+01
## 4805                 ambient  SHO_07          2.899306e+01
## 4806     short_file_duration  SHO_07          9.722222e-01
## 4807     short_file_duration  SHO_07          9.722222e-01
## 4808                 ambient  SHO_07          1.199306e+01
## 4809      excluded_file_list  SHO_07          2.868819e+02
## 4810      excluded_file_list  SHO_07          2.868819e+02
## 4811      excluded_file_list  SHO_07          2.868819e+02
## 4812      excluded_file_list  SHO_07          2.868819e+02
## 4813      excluded_file_list  SHO_07          2.868819e+02
## 4814      excluded_file_list  SHO_07          2.868819e+02
## 4815      excluded_file_list  SHO_07          2.868819e+02
## 4816      excluded_file_list  SHO_07          2.868819e+02
## 4817      excluded_file_list  SHO_07          2.868819e+02
## 4818      excluded_file_list  SHO_07          2.868819e+02
## 4819      excluded_file_list  SHO_07          2.868819e+02
## 4820      excluded_file_list  SHO_07          2.868819e+02
## 4821      excluded_file_list  SHO_07          2.868819e+02
## 4822      excluded_file_list  SHO_07          2.868819e+02
## 4823      excluded_file_list  SHO_07          2.868819e+02
## 4824      excluded_file_list  SHO_07          2.868819e+02
## 4825      excluded_file_list  SHO_07          2.868819e+02
## 4826      excluded_file_list  SHO_07          2.868819e+02
## 4827      excluded_file_list  SHO_07          2.868819e+02
## 4828      excluded_file_list  SHO_07          2.868819e+02
## 4829      excluded_file_list  SHO_07          2.868819e+02
## 4830      excluded_file_list  SHO_07          2.868819e+02
## 4831      excluded_file_list  SHO_07          2.868819e+02
## 4832      excluded_file_list  SHO_07          2.868819e+02
## 4833      excluded_file_list  SHO_07          2.868819e+02
## 4834      excluded_file_list  SHO_07          2.868819e+02
## 4835      excluded_file_list  SHO_07          2.868819e+02
## 4836      excluded_file_list  SHO_07          2.868819e+02
## 4837      excluded_file_list  SHO_07          2.868819e+02
## 4838      excluded_file_list  SHO_07          2.868819e+02
## 4839      excluded_file_list  SHO_07          2.868819e+02
## 4840      excluded_file_list  SHO_07          2.868819e+02
## 4841      excluded_file_list  SHO_07          2.868819e+02
## 4842      excluded_file_list  SHO_07          2.868819e+02
## 4843      excluded_file_list  SHO_07          2.868819e+02
## 4844      excluded_file_list  SHO_07          2.868819e+02
## 4845      excluded_file_list  SHO_07          2.868819e+02
## 4846      excluded_file_list  SHO_07          2.868819e+02
## 4847      excluded_file_list  SHO_07          2.868819e+02
## 4848      excluded_file_list  SHO_07          2.868819e+02
## 4849      excluded_file_list  SHO_07          2.868819e+02
## 4850      excluded_file_list  SHO_07          2.868819e+02
## 4851      excluded_file_list  SHO_07          2.868819e+02
## 4852      excluded_file_list  SHO_07          2.868819e+02
## 4853      excluded_file_list  SHO_07          2.868819e+02
## 4854      excluded_file_list  SHO_07          2.868819e+02
## 4855      excluded_file_list  SHO_07          2.868819e+02
## 4856      excluded_file_list  SHO_07          2.868819e+02
## 4857      excluded_file_list  SHO_07          2.868819e+02
## 4858      excluded_file_list  SHO_07          2.868819e+02
## 4859      excluded_file_list  SHO_07          2.866250e+02
## 4860      excluded_file_list  SHO_07          2.866250e+02
## 4861      excluded_file_list  SHO_07          2.866250e+02
## 4862      excluded_file_list  SHO_07          2.866250e+02
## 4863      excluded_file_list  SHO_07          2.866250e+02
## 4864      excluded_file_list  SHO_07          2.866250e+02
## 4865      excluded_file_list  SHO_07          2.866250e+02
## 4866      excluded_file_list  SHO_07          2.866250e+02
## 4867      excluded_file_list  SHO_07          2.866250e+02
## 4868      excluded_file_list  SHO_07          2.866250e+02
## 4869      excluded_file_list  SHO_07          2.866250e+02
## 4870      excluded_file_list  SHO_07          2.866250e+02
## 4871      excluded_file_list  SHO_07          2.866250e+02
## 4872      excluded_file_list  SHO_07          2.866250e+02
## 4873      excluded_file_list  SHO_07          2.866250e+02
## 4874      excluded_file_list  SHO_07          2.866250e+02
## 4875      excluded_file_list  SHO_07          2.866250e+02
## 4876      excluded_file_list  SHO_07          2.866250e+02
## 4877      excluded_file_list  SHO_07          2.866250e+02
## 4878      excluded_file_list  SHO_07          2.866250e+02
## 4879      excluded_file_list  SHO_07          2.866250e+02
## 4880      excluded_file_list  SHO_07          2.866250e+02
## 4881      excluded_file_list  SHO_07          2.866250e+02
## 4882      excluded_file_list  SHO_07          2.866250e+02
## 4883      excluded_file_list  SHO_07          2.866250e+02
## 4884                 ambient  SHO_07          2.580417e+02
## 4885                 ambient  SHO_07          2.580417e+02
## 4886                 ambient  SHO_07          2.580417e+02
## 4887                 ambient  SHO_07          2.580417e+02
## 4888                 ambient  SHO_07          2.580417e+02
## 4889                 ambient  SHO_07          2.580417e+02
## 4890                 ambient  SHO_07          2.580417e+02
## 4891                 ambient  SHO_07          2.580417e+02
## 4892                 ambient  SHO_07          2.580417e+02
## 4893                 ambient  SHO_07          2.580417e+02
## 4894                 ambient  SHO_07          2.580417e+02
## 4895                 ambient  SHO_07          2.580417e+02
## 4896                 ambient  SHO_07          2.580417e+02
## 4897                 ambient  SHO_07          2.580417e+02
## 4898                 ambient  SHO_07          2.580417e+02
## 4899                 ambient  SHO_07          2.580417e+02
## 4900                 ambient  SHO_07          2.580417e+02
## 4901                 ambient  SHO_07          2.580417e+02
## 4902                 ambient  SHO_07          2.580417e+02
## 4903                 ambient  SHO_07          2.699306e+01
## 4904                 ambient  SHO_07          6.993056e+00
## 4905 excluded_household_list  SHO_08          9.895833e+00
## 4906 excluded_household_list  SHO_08          9.895833e+00
## 4907 excluded_household_list  SHO_08          9.895833e+00
## 4908 excluded_household_list  SHO_08          9.895833e+00
## 4909 excluded_household_list  SHO_08          9.895833e+00
## 4910 excluded_household_list  SHO_08          9.895833e+00
## 4911 excluded_household_list  SHO_08          9.895833e+00
## 4912 excluded_household_list  SHO_08          9.895833e+00
## 4913 excluded_household_list  SHO_08          9.895833e+00
## 4914 excluded_household_list  SHO_08          9.895833e+00
## 4915 excluded_household_list  SHO_08          9.895833e+00
## 4916 excluded_household_list  SHO_08          9.895833e+00
## 4917 excluded_household_list  SHO_08          9.895833e+00
## 4918 excluded_household_list  SHO_08          9.895833e+00
## 4919 excluded_household_list  SHO_08          9.895833e+00
## 4920 excluded_household_list  SHO_08          9.895833e+00
## 4921 excluded_household_list  SHO_08          9.895833e+00
## 4922 excluded_household_list  SHO_08          9.895833e+00
## 4923 excluded_household_list  SHO_08          9.895833e+00
## 4924 excluded_household_list  SHO_08          9.895833e+00
## 4925 excluded_household_list  SHO_08          9.895833e+00
## 4926 excluded_household_list  SHO_08          8.659722e+00
## 4927 excluded_household_list  SHO_08          8.659722e+00
## 4928 excluded_household_list  SHO_08          8.659722e+00
## 4929 excluded_household_list  SHO_08          8.659722e+00
## 4930 excluded_household_list  SHO_08          8.659722e+00
## 4931 excluded_household_list  SHO_08          8.659722e+00
## 4932 excluded_household_list  SHO_08          8.659722e+00
## 4933 excluded_household_list  SHO_08          8.659722e+00
## 4934 excluded_household_list  SHO_08          8.659722e+00
## 4935 excluded_household_list  SHO_08          8.659722e+00
## 4936 excluded_household_list  SHO_08          8.659722e+00
## 4937 excluded_household_list  SHO_08          8.659722e+00
## 4938 excluded_household_list  SHO_08          8.659722e+00
## 4939 excluded_household_list  SHO_08          8.659722e+00
## 4940 excluded_household_list  SHO_08          8.659722e+00
## 4941 excluded_household_list  SHO_08          8.659722e+00
## 4942 excluded_household_list  SHO_08          1.229861e+01
## 4943 excluded_household_list  SHO_08          1.229861e+01
## 4944 excluded_household_list  SHO_08          1.229861e+01
## 4945 excluded_household_list  SHO_08          1.229861e+01
## 4946 excluded_household_list  SHO_08          1.229861e+01
## 4947 excluded_household_list  SHO_08          1.229861e+01
## 4948 excluded_household_list  SHO_08          1.229861e+01
## 4949 excluded_household_list  SHO_08          1.229861e+01
## 4950 excluded_household_list  SHO_08          1.229861e+01
## 4951 excluded_household_list  SHO_08          1.229861e+01
## 4952 excluded_household_list  SHO_08          1.229861e+01
## 4953 excluded_household_list  SHO_08          1.229861e+01
## 4954 excluded_household_list  SHO_08          1.229861e+01
## 4955 excluded_household_list  SHO_08          1.229861e+01
## 4956 excluded_household_list  SHO_08          1.229861e+01
## 4957 excluded_household_list  SHO_08          1.229861e+01
## 4958 excluded_household_list  SHO_08          1.229861e+01
## 4959 excluded_household_list  SHO_08          1.229861e+01
## 4960 excluded_household_list  SHO_08          1.229861e+01
## 4961 excluded_household_list  SHO_08          1.229861e+01
## 4962 excluded_household_list  SHO_08          1.229861e+01
## 4963 excluded_household_list  SHO_08          1.229861e+01
## 4964 excluded_household_list  SHO_08          1.229861e+01
## 4965 excluded_household_list  SHO_08          1.229861e+01
## 4966 excluded_household_list  SHO_08          1.229861e+01
## 4967 excluded_household_list  SHO_08          1.229861e+01
## 4968 excluded_household_list  SHO_08          1.229861e+01
## 4969 excluded_household_list  SHO_08          1.229861e+01
## 4970 excluded_household_list  SHO_08          1.229861e+01
## 4971 excluded_household_list  SHO_08          9.090278e+00
## 4972 excluded_household_list  SHO_08          9.090278e+00
## 4973 excluded_household_list  SHO_08          9.090278e+00
## 4974 excluded_household_list  SHO_08          9.090278e+00
## 4975 excluded_household_list  SHO_08          9.090278e+00
## 4976 excluded_household_list  SHO_08          9.090278e+00
## 4977 excluded_household_list  SHO_08          9.090278e+00
## 4978 excluded_household_list  SHO_08          9.090278e+00
## 4979 excluded_household_list  SHO_08          9.090278e+00
## 4980 excluded_household_list  SHO_08          9.090278e+00
## 4981 excluded_household_list  SHO_08          9.090278e+00
## 4982 excluded_household_list  SHO_08          9.090278e+00
## 4983 excluded_household_list  SHO_08          9.090278e+00
## 4984 excluded_household_list  SHO_08          9.090278e+00
## 4985 excluded_household_list  SHO_08          9.090278e+00
## 4986 excluded_household_list  SHO_08          1.208333e+00
## 4987 excluded_household_list  SHO_08          1.208333e+00
## 4988 excluded_household_list  SHO_08          1.208333e+00
## 4989 excluded_household_list  SHO_08          1.208333e+00
## 4990 excluded_household_list  SHO_08          1.562500e+00
## 4991 excluded_household_list  SHO_08          1.562500e+00
## 4992 excluded_household_list  SHO_08          1.562500e+00
## 4993 excluded_household_list  SHO_08          1.562500e+00
## 4994                 ambient  SHO_08          6.993056e+00
## 4995 excluded_household_list  SHO_08          5.701389e+00
## 4996 excluded_household_list  SHO_08          5.701389e+00
## 4997 excluded_household_list  SHO_08          5.701389e+00
## 4998 excluded_household_list  SHO_08          5.701389e+00
## 4999 excluded_household_list  SHO_08          5.701389e+00
## 5000 excluded_household_list  SHO_08          5.701389e+00
## 5001 excluded_household_list  SHO_08          5.701389e+00
## 5002 excluded_household_list  SHO_08          5.701389e+00
## 5003 excluded_household_list  SHO_08          5.701389e+00
## 5004 excluded_household_list  SHO_08          5.701389e+00
## 5005 excluded_household_list  SHO_08          5.701389e+00
## 5006 excluded_household_list  SHO_08          5.701389e+00
## 5007 excluded_household_list  SHO_08          5.701389e+00
## 5008 excluded_household_list  SHO_08          5.701389e+00
## 5009 excluded_household_list  SHO_08          5.701389e+00
## 5010 excluded_household_list  SHO_08          5.701389e+00
## 5011 excluded_household_list  SHO_08          5.701389e+00
## 5012 excluded_household_list  SHO_08          5.701389e+00
## 5013 excluded_household_list  SHO_08          5.701389e+00
## 5014 excluded_household_list  SHO_08          5.701389e+00
## 5015 excluded_household_list  SHO_08          5.701389e+00
## 5016 excluded_household_list  SHO_08          5.701389e+00
## 5017 excluded_household_list  SHO_08          5.701389e+00
## 5018 excluded_household_list  SHO_08          5.701389e+00
## 5019 excluded_household_list  SHO_08          1.291667e+00
## 5020 excluded_household_list  SHO_08          1.291667e+00
## 5021 excluded_household_list  SHO_08          1.291667e+00
## 5022 excluded_household_list  SHO_08          1.291667e+00
## 5023 excluded_household_list  SHO_08          1.118056e+01
## 5024 excluded_household_list  SHO_08          1.118056e+01
## 5025 excluded_household_list  SHO_08          1.118056e+01
## 5026 excluded_household_list  SHO_08          1.118056e+01
## 5027 excluded_household_list  SHO_08          1.118056e+01
## 5028      excluded_file_list  SHO_09          2.868472e+02
## 5029      excluded_file_list  SHO_09          2.868472e+02
## 5030      excluded_file_list  SHO_09          2.868472e+02
## 5031      excluded_file_list  SHO_09          2.868472e+02
## 5032      excluded_file_list  SHO_09          2.868472e+02
## 5033      excluded_file_list  SHO_09          2.868472e+02
## 5034      excluded_file_list  SHO_09          2.868472e+02
## 5035      excluded_file_list  SHO_09          2.868472e+02
## 5036      excluded_file_list  SHO_09          2.868472e+02
## 5037      excluded_file_list  SHO_09          2.868472e+02
## 5038      excluded_file_list  SHO_09          2.868472e+02
## 5039      excluded_file_list  SHO_09          2.868472e+02
## 5040      excluded_file_list  SHO_09          2.868472e+02
## 5041      excluded_file_list  SHO_09          2.868472e+02
## 5042      excluded_file_list  SHO_09          2.868472e+02
## 5043      excluded_file_list  SHO_09          2.868472e+02
## 5044      excluded_file_list  SHO_09          2.868472e+02
## 5045      excluded_file_list  SHO_09          2.868472e+02
## 5046      excluded_file_list  SHO_09          2.868472e+02
## 5047      excluded_file_list  SHO_09          2.868472e+02
## 5048      excluded_file_list  SHO_09          2.868472e+02
## 5049      excluded_file_list  SHO_09          2.868472e+02
## 5050      excluded_file_list  SHO_09          2.868472e+02
## 5051      excluded_file_list  SHO_09          2.868472e+02
## 5052      excluded_file_list  SHO_09          2.868472e+02
## 5053      excluded_file_list  SHO_09          2.868472e+02
## 5054      excluded_file_list  SHO_09          2.868472e+02
## 5055      excluded_file_list  SHO_09          2.868472e+02
## 5056      excluded_file_list  SHO_09          2.868472e+02
## 5057      excluded_file_list  SHO_09          2.868472e+02
## 5058      excluded_file_list  SHO_09          2.868472e+02
## 5059      excluded_file_list  SHO_09          2.868472e+02
## 5060      excluded_file_list  SHO_09          2.868472e+02
## 5061      excluded_file_list  SHO_09          2.868472e+02
## 5062      excluded_file_list  SHO_09          2.868472e+02
## 5063      excluded_file_list  SHO_09          2.868472e+02
## 5064      excluded_file_list  SHO_09          2.868472e+02
## 5065      excluded_file_list  SHO_09          2.868472e+02
## 5066      excluded_file_list  SHO_09          2.868472e+02
## 5067      excluded_file_list  SHO_09          2.868472e+02
## 5068      excluded_file_list  SHO_09          2.868472e+02
## 5069      excluded_file_list  SHO_09          2.868472e+02
## 5070      excluded_file_list  SHO_09          2.868472e+02
## 5071      excluded_file_list  SHO_09          2.868472e+02
## 5072      excluded_file_list  SHO_09          2.868472e+02
## 5073      excluded_file_list  SHO_09          2.868472e+02
## 5074      excluded_file_list  SHO_09          2.868472e+02
## 5075      excluded_file_list  SHO_09          2.868472e+02
## 5076      excluded_file_list  SHO_09          2.868472e+02
## 5077      excluded_file_list  SHO_09          2.868472e+02
## 5078      excluded_file_list  SHO_09          2.868472e+02
## 5079      excluded_file_list  SHO_09          2.868472e+02
## 5080      excluded_file_list  SHO_09          2.868472e+02
## 5081      excluded_file_list  SHO_09          2.868472e+02
## 5082      excluded_file_list  SHO_09          2.868472e+02
## 5083      excluded_file_list  SHO_09          2.868472e+02
## 5084      excluded_file_list  SHO_09          2.868472e+02
## 5085      excluded_file_list  SHO_09          2.868472e+02
## 5086      excluded_file_list  SHO_09          2.868472e+02
## 5087      excluded_file_list  SHO_09          2.868472e+02
## 5088      excluded_file_list  SHO_09          2.868472e+02
## 5089      excluded_file_list  SHO_09          2.868472e+02
## 5090      excluded_file_list  SHO_09          2.868472e+02
## 5091      excluded_file_list  SHO_09          2.868472e+02
## 5092      excluded_file_list  SHO_09          2.868472e+02
## 5093      excluded_file_list  SHO_09          2.868472e+02
## 5094      excluded_file_list  SHO_09          2.868472e+02
## 5095      excluded_file_list  SHO_09          2.868472e+02
## 5096      excluded_file_list  SHO_09          2.868472e+02
## 5097      excluded_file_list  SHO_09          2.868472e+02
## 5098      excluded_file_list  SHO_09          2.868472e+02
## 5099      excluded_file_list  SHO_09          2.868472e+02
## 5100      excluded_file_list  SHO_09          2.868472e+02
## 5101      excluded_file_list  SHO_09          2.868472e+02
## 5102      excluded_file_list  SHO_09          2.868472e+02
## 5103      excluded_file_list  SHO_09          2.868472e+02
## 5104      excluded_file_list  SHO_09          2.868472e+02
## 5105      excluded_file_list  SHO_09          2.868472e+02
## 5106      excluded_file_list  SHO_09          2.868472e+02
## 5107      excluded_file_list  SHO_09          2.868472e+02
## 5108      excluded_file_list  SHO_09          2.868472e+02
## 5109      excluded_file_list  SHO_09          2.868472e+02
## 5110      excluded_file_list  SHO_09          2.868472e+02
## 5111      excluded_file_list  SHO_09          2.868472e+02
## 5112      excluded_file_list  SHO_09          2.868472e+02
## 5113      excluded_file_list  SHO_09          2.868472e+02
## 5114      excluded_file_list  SHO_09          2.868472e+02
## 5115      excluded_file_list  SHO_09          2.869028e+02
## 5116      excluded_file_list  SHO_09          2.869028e+02
## 5117      excluded_file_list  SHO_09          2.869028e+02
## 5118      excluded_file_list  SHO_09          2.869028e+02
## 5119      excluded_file_list  SHO_09          2.869028e+02
## 5120      excluded_file_list  SHO_09          2.869028e+02
## 5121      excluded_file_list  SHO_09          2.869028e+02
## 5122      excluded_file_list  SHO_09          2.869028e+02
## 5123      excluded_file_list  SHO_09          2.869028e+02
## 5124      excluded_file_list  SHO_09          2.869028e+02
## 5125      excluded_file_list  SHO_09          2.869028e+02
## 5126      excluded_file_list  SHO_09          2.869028e+02
## 5127      excluded_file_list  SHO_09          2.869028e+02
## 5128      excluded_file_list  SHO_09          2.869028e+02
## 5129      excluded_file_list  SHO_09          2.869028e+02
## 5130      excluded_file_list  SHO_09          2.869028e+02
## 5131      excluded_file_list  SHO_09          2.869028e+02
## 5132      excluded_file_list  SHO_09          2.869028e+02
## 5133      excluded_file_list  SHO_09          2.869028e+02
## 5134      excluded_file_list  SHO_09          2.869028e+02
## 5135      excluded_file_list  SHO_09          2.869028e+02
## 5136      excluded_file_list  SHO_09          2.869028e+02
## 5137      excluded_file_list  SHO_09          2.869028e+02
## 5138      excluded_file_list  SHO_09          2.869028e+02
## 5139      excluded_file_list  SHO_09          2.869028e+02
## 5140      excluded_file_list  SHO_09          2.869028e+02
## 5141      excluded_file_list  SHO_09          2.869028e+02
## 5142      excluded_file_list  SHO_09          2.869028e+02
## 5143      excluded_file_list  SHO_09          2.869028e+02
## 5144      excluded_file_list  SHO_09          2.869028e+02
## 5145      excluded_file_list  SHO_09          2.869028e+02
## 5146      excluded_file_list  SHO_09          2.869028e+02
## 5147      excluded_file_list  SHO_09          2.869028e+02
## 5148      excluded_file_list  SHO_09          2.869028e+02
## 5149      excluded_file_list  SHO_09          2.869028e+02
## 5150      excluded_file_list  SHO_09          2.869028e+02
## 5151      excluded_file_list  SHO_09          2.869028e+02
## 5152      excluded_file_list  SHO_09          2.869028e+02
## 5153      excluded_file_list  SHO_09          2.869028e+02
## 5154      excluded_file_list  SHO_09          2.869028e+02
## 5155      excluded_file_list  SHO_09          2.869028e+02
## 5156      excluded_file_list  SHO_09          2.869028e+02
## 5157      excluded_file_list  SHO_09          2.869028e+02
## 5158      excluded_file_list  SHO_09          2.869028e+02
## 5159      excluded_file_list  SHO_09          2.869028e+02
## 5160      excluded_file_list  SHO_09          2.869028e+02
## 5161      excluded_file_list  SHO_09          2.869028e+02
## 5162      excluded_file_list  SHO_09          2.869028e+02
## 5163      excluded_file_list  SHO_09          2.869028e+02
## 5164      excluded_file_list  SHO_09          2.869028e+02
## 5165     short_file_duration  SHO_09          1.180556e-01
## 5166     short_file_duration  SHO_09          1.180556e-01
## 5167 excluded_household_list  SHO_10          1.770833e+00
## 5168 excluded_household_list  SHO_10          1.770833e+00
## 5169 excluded_household_list  SHO_10          1.770833e+00
## 5170 excluded_household_list  SHO_10          1.770833e+00
## 5171 excluded_household_list  SHO_10          2.047917e+01
## 5172 excluded_household_list  SHO_10          2.047917e+01
## 5173 excluded_household_list  SHO_10          2.047917e+01
## 5174 excluded_household_list  SHO_10          2.047917e+01
## 5175 excluded_household_list  SHO_10          2.047917e+01
## 5176 excluded_household_list  SHO_10          2.047917e+01
## 5177 excluded_household_list  SHO_10          2.047917e+01
## 5178 excluded_household_list  SHO_10          2.047917e+01
## 5179 excluded_household_list  SHO_10          2.047917e+01
## 5180 excluded_household_list  SHO_10          2.047917e+01
## 5181 excluded_household_list  SHO_10          2.047917e+01
## 5182 excluded_household_list  SHO_10          2.047917e+01
## 5183 excluded_household_list  SHO_10          2.047917e+01
## 5184 excluded_household_list  SHO_10          2.047917e+01
## 5185 excluded_household_list  SHO_10          2.047917e+01
## 5186 excluded_household_list  SHO_10          2.047917e+01
## 5187 excluded_household_list  SHO_10          2.047917e+01
## 5188 excluded_household_list  SHO_10          2.047917e+01
## 5189 excluded_household_list  SHO_10          2.047917e+01
## 5190 excluded_household_list  SHO_10          2.047917e+01
## 5191 excluded_household_list  SHO_10          2.047917e+01
## 5192 excluded_household_list  SHO_10          2.047917e+01
## 5193 excluded_household_list  SHO_10          2.047917e+01
## 5194 excluded_household_list  SHO_10          2.047917e+01
## 5195 excluded_household_list  SHO_10          2.047917e+01
## 5196 excluded_household_list  SHO_10          2.047917e+01
## 5197 excluded_household_list  SHO_10          2.047917e+01
## 5198 excluded_household_list  SHO_10          2.047917e+01
## 5199 excluded_household_list  SHO_10          2.047917e+01
## 5200 excluded_household_list  SHO_10          2.047917e+01
## 5201 excluded_household_list  SHO_10          2.047917e+01
## 5202 excluded_household_list  SHO_10          2.047917e+01
## 5203 excluded_household_list  SHO_10          2.047917e+01
## 5204 excluded_household_list  SHO_10          2.047917e+01
## 5205 excluded_household_list  SHO_10          2.047917e+01
## 5206 excluded_household_list  SHO_10          2.047917e+01
## 5207 excluded_household_list  SHO_10          2.349306e+01
## 5208 excluded_household_list  SHO_10          2.349306e+01
## 5209 excluded_household_list  SHO_10          2.349306e+01
## 5210 excluded_household_list  SHO_10          2.349306e+01
## 5211 excluded_household_list  SHO_10          2.349306e+01
## 5212 excluded_household_list  SHO_10          2.349306e+01
## 5213 excluded_household_list  SHO_10          2.349306e+01
## 5214 excluded_household_list  SHO_10          2.349306e+01
## 5215 excluded_household_list  SHO_10          2.349306e+01
## 5216 excluded_household_list  SHO_10          2.349306e+01
## 5217 excluded_household_list  SHO_10          2.349306e+01
## 5218 excluded_household_list  SHO_10          2.349306e+01
## 5219 excluded_household_list  SHO_10          2.349306e+01
## 5220 excluded_household_list  SHO_10          2.349306e+01
## 5221 excluded_household_list  SHO_10          2.349306e+01
## 5222 excluded_household_list  SHO_10          2.349306e+01
## 5223 excluded_household_list  SHO_10          2.349306e+01
## 5224 excluded_household_list  SHO_10          2.349306e+01
## 5225 excluded_household_list  SHO_10          2.349306e+01
## 5226 excluded_household_list  SHO_10          2.349306e+01
## 5227 excluded_household_list  SHO_10          2.349306e+01
## 5228 excluded_household_list  SHO_10          2.349306e+01
## 5229 excluded_household_list  SHO_10          2.349306e+01
## 5230 excluded_household_list  SHO_10          2.349306e+01
## 5231 excluded_household_list  SHO_10          2.349306e+01
## 5232 excluded_household_list  SHO_10          2.349306e+01
## 5233 excluded_household_list  SHO_10          1.720139e+01
## 5234 excluded_household_list  SHO_10          1.720139e+01
## 5235 excluded_household_list  SHO_10          1.720139e+01
## 5236 excluded_household_list  SHO_10          1.720139e+01
## 5237 excluded_household_list  SHO_10          1.720139e+01
## 5238 excluded_household_list  SHO_10          1.720139e+01
## 5239 excluded_household_list  SHO_10          1.720139e+01
## 5240 excluded_household_list  SHO_10          1.720139e+01
## 5241 excluded_household_list  SHO_10          1.720139e+01
## 5242 excluded_household_list  SHO_10          1.720139e+01
## 5243 excluded_household_list  SHO_10          1.720139e+01
## 5244 excluded_household_list  SHO_10          1.720139e+01
## 5245 excluded_household_list  SHO_10          1.720139e+01
## 5246     short_file_duration  SHO_10          9.236111e-01
## 5247     short_file_duration  SHO_10          9.236111e-01
## 5248     short_file_duration  SHO_10          9.236111e-01
## 5249 excluded_household_list  SHO_10          2.839514e+02
## 5250 excluded_household_list  SHO_10          2.839514e+02
## 5251 excluded_household_list  SHO_10          2.839514e+02
## 5252 excluded_household_list  SHO_10          2.839514e+02
## 5253 excluded_household_list  SHO_10          2.839514e+02
## 5254 excluded_household_list  SHO_10          2.839514e+02
## 5255 excluded_household_list  SHO_10          2.839514e+02
## 5256 excluded_household_list  SHO_10          2.839514e+02
## 5257 excluded_household_list  SHO_10          2.839514e+02
## 5258 excluded_household_list  SHO_10          2.839514e+02
## 5259 excluded_household_list  SHO_10          2.839514e+02
## 5260 excluded_household_list  SHO_10          2.839514e+02
## 5261 excluded_household_list  SHO_10          2.839514e+02
## 5262 excluded_household_list  SHO_10          2.839514e+02
## 5263 excluded_household_list  SHO_10          2.839514e+02
## 5264 excluded_household_list  SHO_10          2.839514e+02
## 5265 excluded_household_list  SHO_10          2.839514e+02
## 5266 excluded_household_list  SHO_10          2.839514e+02
## 5267 excluded_household_list  SHO_10          2.839514e+02
## 5268 excluded_household_list  SHO_10          2.839514e+02
## 5269 excluded_household_list  SHO_10          2.839514e+02
## 5270 excluded_household_list  SHO_10          2.839514e+02
## 5271 excluded_household_list  SHO_10          2.839514e+02
## 5272 excluded_household_list  SHO_10          2.839514e+02
## 5273 excluded_household_list  SHO_10          2.839514e+02
## 5274 excluded_household_list  SHO_10          2.839514e+02
## 5275 excluded_household_list  SHO_10          2.839514e+02
## 5276 excluded_household_list  SHO_10          2.839514e+02
## 5277 excluded_household_list  SHO_10          2.839514e+02
## 5278 excluded_household_list  SHO_10          2.839514e+02
## 5279 excluded_household_list  SHO_10          2.839514e+02
## 5280 excluded_household_list  SHO_10          2.839514e+02
## 5281 excluded_household_list  SHO_10          2.839514e+02
## 5282 excluded_household_list  SHO_10          2.839514e+02
## 5283 excluded_household_list  SHO_10          2.839514e+02
## 5284 excluded_household_list  SHO_10          2.839514e+02
## 5285 excluded_household_list  SHO_10          7.513889e+00
## 5286 excluded_household_list  SHO_10          7.513889e+00
## 5287 excluded_household_list  SHO_10          7.513889e+00
## 5288 excluded_household_list  SHO_10          7.513889e+00
## 5289 excluded_household_list  SHO_10          7.513889e+00
## 5290 excluded_household_list  SHO_10          7.513889e+00
## 5291 excluded_household_list  SHO_10          7.513889e+00
## 5292 excluded_household_list  SHO_10          7.513889e+00
## 5293 excluded_household_list  SHO_10          7.513889e+00
## 5294 excluded_household_list  SHO_10          7.513889e+00
## 5295 excluded_household_list  SHO_10          7.513889e+00
## 5296 excluded_household_list  SHO_10          7.513889e+00
## 5297 excluded_household_list  SHO_10          7.513889e+00
## 5298 excluded_household_list  SHO_10          7.513889e+00
## 5299 excluded_household_list  SHO_10          7.513889e+00
## 5300 excluded_household_list  SHO_10          7.513889e+00
## 5301 excluded_household_list  SHO_10          7.513889e+00
## 5302 excluded_household_list  SHO_10          7.513889e+00
## 5303 excluded_household_list  SHO_10          7.513889e+00
## 5304 excluded_household_list  SHO_10          7.513889e+00
## 5305 excluded_household_list  SHO_10          7.513889e+00
## 5306 excluded_household_list  SHO_10          7.513889e+00
## 5307 excluded_household_list  SHO_10          7.513889e+00
## 5308 excluded_household_list  SHO_10          7.513889e+00
## 5309 excluded_household_list  SHO_10          7.513889e+00
## 5310 excluded_household_list  SHO_10          7.513889e+00
## 5311 excluded_household_list  SHO_10          7.513889e+00
## 5312 excluded_household_list  SHO_10          7.513889e+00
## 5313 excluded_household_list  SHO_10          7.500000e+00
## 5314 excluded_household_list  SHO_10          7.500000e+00
## 5315 excluded_household_list  SHO_10          7.500000e+00
## 5316 excluded_household_list  SHO_10          7.500000e+00
## 5317 excluded_household_list  SHO_10          7.500000e+00
## 5318 excluded_household_list  SHO_10          7.500000e+00
## 5319 excluded_household_list  SHO_10          7.500000e+00
## 5320 excluded_household_list  SHO_10          7.500000e+00
## 5321 excluded_household_list  SHO_10          7.500000e+00
## 5322 excluded_household_list  SHO_10          7.500000e+00
## 5323 excluded_household_list  SHO_10          7.500000e+00
## 5324 excluded_household_list  SHO_10          7.500000e+00
## 5325 excluded_household_list  SHO_10          7.500000e+00
## 5326 excluded_household_list  SHO_10          7.500000e+00
## 5327 excluded_household_list  SHO_10          7.500000e+00
## 5328 excluded_household_list  SHO_10          7.437500e+00
## 5329 excluded_household_list  SHO_10          7.437500e+00
## 5330 excluded_household_list  SHO_10          7.437500e+00
## 5331 excluded_household_list  SHO_10          7.437500e+00
## 5332 excluded_household_list  SHO_10          7.437500e+00
## 5333 excluded_household_list  SHO_10          7.437500e+00
## 5334 excluded_household_list  SHO_10          7.437500e+00
## 5335 excluded_household_list  SHO_10          7.437500e+00
## 5336 excluded_household_list  SHO_10          7.437500e+00
## 5337 excluded_household_list  SHO_10          7.437500e+00
## 5338 excluded_household_list  SHO_10          7.437500e+00
## 5339 excluded_household_list  SHO_10          7.437500e+00
## 5340 excluded_household_list  SHO_10          7.437500e+00
## 5341 excluded_household_list  SHO_10          7.437500e+00
## 5342 excluded_household_list  SHO_10          7.437500e+00
## 5343 excluded_household_list  SHO_10          7.437500e+00
## 5344 excluded_household_list  SHO_10          7.437500e+00
## 5345 excluded_household_list  SHO_10          7.437500e+00
## 5346 excluded_household_list  SHO_10          7.437500e+00
##          datetime_placed stove_descriptions
## 1    2018-02-04 00:04:00            Ambient
## 2    2018-02-10 14:57:00          CleanCook
## 3    2018-02-10 14:57:00          CleanCook
## 4    2018-02-10 14:57:00          CleanCook
## 5    2018-02-10 14:57:00          CleanCook
## 6    2018-02-10 14:57:00          CleanCook
## 7    2018-02-10 14:57:00          CleanCook
## 8    2018-02-10 14:57:00          CleanCook
## 9    2018-02-10 14:57:00          CleanCook
## 10   2018-02-10 14:57:00          CleanCook
## 11   2018-02-10 14:57:00          CleanCook
## 12   2018-02-04 09:52:00           Kerosene
## 13   2018-02-04 09:52:00           Kerosene
## 14   2018-02-04 09:52:00           Kerosene
## 15   2018-02-04 09:52:00           Kerosene
## 16   2018-02-04 09:52:00           Kerosene
## 17   2018-02-04 09:52:00           Kerosene
## 18   2018-02-04 09:52:00           Kerosene
## 19   2018-02-04 09:52:00           Kerosene
## 20   2018-01-07 00:08:00            Ambient
## 21   2018-01-07 00:03:00          CleanCook
## 22   2018-01-07 06:46:00           Kerosene
## 23   2018-01-07 06:46:00           Kerosene
## 24   2018-01-07 06:46:00           Kerosene
## 25   2018-01-07 06:46:00           Kerosene
## 26   2018-01-07 06:46:00           Kerosene
## 27   2018-01-07 06:46:00           Kerosene
## 28   2018-01-07 06:46:00           Kerosene
## 29   2018-01-07 06:46:00           Kerosene
## 30   2018-01-07 06:46:00           Kerosene
## 31   2018-01-07 06:46:00           Kerosene
## 32   2018-01-07 06:46:00           Kerosene
## 33   2018-01-07 06:46:00           Kerosene
## 34   2018-01-07 06:46:00           Kerosene
## 35   2018-01-07 06:46:00           Kerosene
## 36   2018-01-07 06:46:00           Kerosene
## 37   2017-12-10 00:04:00            Ambient
## 38   2017-12-10 06:33:00           Kerosene
## 39   2017-12-10 06:33:00           Kerosene
## 40   2017-12-10 06:33:00           Kerosene
## 41   2017-12-10 06:33:00           Kerosene
## 42   2017-12-10 06:33:00           Kerosene
## 43   2017-12-10 06:33:00           Kerosene
## 44   2017-12-10 06:33:00           Kerosene
## 45   2017-12-10 06:33:00           Kerosene
## 46   2017-12-10 06:33:00           Kerosene
## 47   2017-12-10 06:33:00           Kerosene
## 48   2017-12-10 06:33:00           Kerosene
## 49   2017-12-10 06:33:00           Kerosene
## 50   2017-12-10 06:33:00           Kerosene
## 51   2017-12-10 06:33:00           Kerosene
## 52   2017-12-10 06:33:00           Kerosene
## 53   2017-12-10 06:33:00           Kerosene
## 54   2017-12-10 06:33:00           Kerosene
## 55   2017-12-10 06:33:00           Kerosene
## 56   2017-12-10 06:33:00           Kerosene
## 57   2017-12-10 06:33:00           Kerosene
## 58   2017-12-10 06:33:00           Kerosene
## 59   2017-12-10 06:33:00           Kerosene
## 60   2017-12-10 06:33:00           Kerosene
## 61   2017-12-10 06:33:00           Kerosene
## 62   2017-12-10 06:33:00           Kerosene
## 63   2017-12-10 06:33:00           Kerosene
## 64   2017-12-10 06:33:00           Kerosene
## 65   2017-12-10 06:33:00           Kerosene
## 66   2017-12-10 06:33:00           Kerosene
## 67   2017-12-10 06:33:00           Kerosene
## 68   2017-12-10 06:33:00           Kerosene
## 69   2017-12-10 06:33:00           Kerosene
## 70   2017-12-10 06:33:00           Kerosene
## 71   2017-12-10 06:33:00           Kerosene
## 72   2017-12-10 06:33:00           Kerosene
## 73   2017-12-10 06:33:00           Kerosene
## 74   2017-12-10 06:33:00           Kerosene
## 75   2017-12-10 06:33:00           Kerosene
## 76   2017-12-10 06:33:00           Kerosene
## 77   2017-12-10 06:33:00           Kerosene
## 78   2017-12-10 06:33:00           Kerosene
## 79   2017-12-10 06:33:00           Kerosene
## 80   2017-12-10 06:33:00           Kerosene
## 81   2017-12-10 06:33:00           Kerosene
## 82   2017-12-10 06:33:00           Kerosene
## 83   2017-12-10 06:33:00           Kerosene
## 84   2017-12-10 06:33:00           Kerosene
## 85   2017-12-10 06:33:00           Kerosene
## 86   2017-12-10 06:33:00           Kerosene
## 87   2017-12-10 06:33:00           Kerosene
## 88   2017-12-25 12:20:00          CleanCook
## 89   2017-12-25 12:20:00          CleanCook
## 90   2017-12-25 12:20:00          CleanCook
## 91   2017-12-25 12:20:00          CleanCook
## 92   2017-12-25 12:20:00          CleanCook
## 93   2017-11-30 00:09:00          CleanCook
## 94   2017-11-30 00:06:00            Ambient
## 95   2017-11-30 05:52:00           Kerosene
## 96   2017-11-30 05:52:00           Kerosene
## 97   2017-11-30 05:52:00           Kerosene
## 98   2017-11-30 05:52:00           Kerosene
## 99   2017-11-30 05:52:00           Kerosene
## 100  2017-11-30 05:52:00           Kerosene
## 101  2017-11-30 05:52:00           Kerosene
## 102  2017-11-30 05:52:00           Kerosene
## 103  2017-11-30 05:52:00           Kerosene
## 104  2017-11-30 05:52:00           Kerosene
## 105  2017-11-30 05:52:00           Kerosene
## 106  2017-11-30 05:52:00           Kerosene
## 107  2017-11-30 05:52:00           Kerosene
## 108  2017-11-30 05:52:00           Kerosene
## 109  2017-11-30 05:52:00           Kerosene
## 110  2017-11-30 05:52:00           Kerosene
## 111  2017-11-30 05:52:00           Kerosene
## 112  2017-11-30 05:52:00           Kerosene
## 113  2017-11-30 05:52:00           Kerosene
## 114  2017-02-12 02:49:00          CleanCook
## 115  2017-02-12 02:49:00          CleanCook
## 116  2017-02-12 02:49:00          CleanCook
## 117  2017-02-12 02:49:00          CleanCook
## 118  2017-02-12 02:49:00          CleanCook
## 119  2017-02-12 02:49:00          CleanCook
## 120  2017-02-12 02:49:00          CleanCook
## 121  2017-02-12 02:49:00          CleanCook
## 122  2017-02-12 02:49:00          CleanCook
## 123  2017-02-12 02:49:00          CleanCook
## 124  2017-02-12 02:49:00          CleanCook
## 125  2017-02-12 02:49:00          CleanCook
## 126  2017-02-12 02:49:00          CleanCook
## 127  2017-02-12 02:49:00          CleanCook
## 128  2017-02-12 02:49:00          CleanCook
## 129  2017-02-12 02:49:00          CleanCook
## 130  2017-02-12 02:49:00          CleanCook
## 131  2017-02-12 02:49:00          CleanCook
## 132  2017-02-12 02:49:00          CleanCook
## 133  2017-02-12 02:49:00          CleanCook
## 134  2017-02-12 02:49:00          CleanCook
## 135  2017-02-12 02:49:00          CleanCook
## 136  2017-02-12 02:49:00          CleanCook
## 137  2017-02-12 02:49:00          CleanCook
## 138  2017-02-12 02:49:00          CleanCook
## 139  2017-02-12 02:49:00          CleanCook
## 140  2017-02-12 02:49:00          CleanCook
## 141  2017-02-12 02:49:00          CleanCook
## 142  2017-02-12 02:49:00          CleanCook
## 143  2017-02-12 02:49:00          CleanCook
## 144  2017-02-12 02:49:00          CleanCook
## 145  2017-02-12 02:49:00          CleanCook
## 146  2017-02-12 02:49:00          CleanCook
## 147  2017-02-12 02:49:00          CleanCook
## 148  2017-02-12 02:49:00          CleanCook
## 149  2017-02-12 02:49:00          CleanCook
## 150  2017-02-12 02:49:00          CleanCook
## 151  2017-02-12 02:49:00          CleanCook
## 152  2017-02-12 02:49:00          CleanCook
## 153  2017-02-12 02:49:00          CleanCook
## 154  2017-02-12 02:49:00          CleanCook
## 155  2017-02-12 02:49:00          CleanCook
## 156  2017-02-12 02:49:00          CleanCook
## 157  2017-02-12 02:49:00          CleanCook
## 158  2017-02-12 02:49:00          CleanCook
## 159  2017-02-12 02:49:00          CleanCook
## 160  2017-02-12 02:49:00          CleanCook
## 161  2017-02-12 02:49:00          CleanCook
## 162  2017-02-12 02:49:00          CleanCook
## 163  2017-02-12 02:49:00          CleanCook
## 164  2017-02-12 02:49:00          CleanCook
## 165  2017-02-12 02:49:00          CleanCook
## 166  2017-02-12 02:49:00          CleanCook
## 167  2017-02-12 02:49:00          CleanCook
## 168  2017-02-12 02:49:00          CleanCook
## 169  2017-02-12 02:49:00          CleanCook
## 170  2017-02-12 02:49:00          CleanCook
## 171  2017-02-12 02:49:00          CleanCook
## 172  2017-02-12 02:49:00          CleanCook
## 173  2017-02-12 02:49:00          CleanCook
## 174  2017-02-12 02:49:00          CleanCook
## 175  2017-02-12 02:49:00          CleanCook
## 176  2017-02-12 02:49:00          CleanCook
## 177  2017-02-12 02:49:00          CleanCook
## 178  2017-02-12 02:49:00          CleanCook
## 179  2017-02-12 02:49:00          CleanCook
## 180  2017-02-12 02:49:00          CleanCook
## 181  2017-02-12 02:49:00          CleanCook
## 182  2017-02-12 02:49:00          CleanCook
## 183  2017-02-12 02:49:00          CleanCook
## 184  2017-02-12 02:49:00          CleanCook
## 185  2017-02-12 02:49:00          CleanCook
## 186  2017-02-12 02:49:00          CleanCook
## 187  2017-02-12 02:49:00          CleanCook
## 188  2017-02-12 02:49:00          CleanCook
## 189  2017-02-12 02:49:00          CleanCook
## 190  2017-02-12 02:49:00          CleanCook
## 191  2017-02-12 02:49:00          CleanCook
## 192  2017-02-12 10:16:00            Ambient
## 193  2017-02-12 10:16:00            Ambient
## 194  2017-02-12 10:16:00            Ambient
## 195  2017-02-12 10:16:00            Ambient
## 196  2017-02-12 10:16:00            Ambient
## 197  2017-02-12 10:16:00            Ambient
## 198  2017-02-12 10:16:00            Ambient
## 199  2017-02-12 10:16:00            Ambient
## 200  2017-02-12 10:16:00            Ambient
## 201  2017-02-12 10:16:00            Ambient
## 202  2017-02-12 10:16:00            Ambient
## 203  2017-02-12 10:16:00            Ambient
## 204  2017-02-12 10:16:00            Ambient
## 205  2017-02-12 10:16:00            Ambient
## 206  2017-02-12 10:16:00            Ambient
## 207  2017-02-12 10:16:00            Ambient
## 208  2017-02-12 10:16:00            Ambient
## 209  2017-02-12 10:16:00            Ambient
## 210  2017-02-12 10:16:00            Ambient
## 211  2017-02-12 10:16:00            Ambient
## 212  2017-02-12 10:16:00            Ambient
## 213  2017-02-12 10:16:00            Ambient
## 214  2017-02-12 10:16:00            Ambient
## 215  2017-02-12 10:16:00            Ambient
## 216  2017-02-12 10:16:00            Ambient
## 217  2017-02-12 10:16:00            Ambient
## 218  2017-02-12 10:16:00            Ambient
## 219  2017-02-12 10:16:00            Ambient
## 220  2017-02-12 10:16:00            Ambient
## 221  2017-02-12 10:16:00            Ambient
## 222  2017-02-12 10:16:00            Ambient
## 223  2017-02-12 10:16:00            Ambient
## 224  2017-02-12 10:16:00            Ambient
## 225  2017-02-12 10:16:00            Ambient
## 226  2017-02-12 10:16:00            Ambient
## 227  2017-02-12 10:16:00            Ambient
## 228  2017-02-12 10:16:00            Ambient
## 229  2017-02-12 10:16:00            Ambient
## 230  2017-02-12 10:16:00            Ambient
## 231  2017-02-12 10:16:00            Ambient
## 232  2017-02-12 10:16:00            Ambient
## 233  2017-02-12 10:16:00            Ambient
## 234  2017-02-12 10:16:00            Ambient
## 235  2017-02-12 10:16:00            Ambient
## 236  2017-02-12 10:16:00            Ambient
## 237  2017-02-12 10:16:00            Ambient
## 238  2017-02-12 10:16:00            Ambient
## 239  2017-02-12 10:16:00            Ambient
## 240  2017-02-12 10:16:00            Ambient
## 241  2017-02-12 10:16:00            Ambient
## 242  2017-02-12 10:16:00            Ambient
## 243  2017-02-12 10:16:00            Ambient
## 244  2017-02-12 10:16:00            Ambient
## 245  2017-02-12 10:16:00            Ambient
## 246  2017-02-12 10:16:00            Ambient
## 247  2017-02-12 10:16:00            Ambient
## 248  2017-02-12 10:16:00            Ambient
## 249  2017-02-12 10:16:00            Ambient
## 250  2017-02-12 10:16:00            Ambient
## 251  2017-02-12 10:16:00            Ambient
## 252  2017-02-12 10:16:00            Ambient
## 253  2017-02-12 10:16:00            Ambient
## 254  2017-02-12 10:16:00            Ambient
## 255  2017-02-12 10:16:00            Ambient
## 256  2017-02-12 10:16:00            Ambient
## 257  2017-02-12 10:16:00            Ambient
## 258  2017-02-12 10:16:00            Ambient
## 259  2017-02-12 10:16:00            Ambient
## 260  2017-02-12 10:16:00            Ambient
## 261  2017-02-12 10:16:00            Ambient
## 262  2017-02-12 10:16:00            Ambient
## 263  2017-02-12 10:16:00            Ambient
## 264  2017-02-12 10:16:00            Ambient
## 265  2017-02-12 10:16:00            Ambient
## 266  2017-02-12 10:16:00            Ambient
## 267  2017-02-12 10:16:00            Ambient
## 268  2017-02-12 10:16:00            Ambient
## 269  2017-02-12 10:16:00            Ambient
## 270  2017-02-12 10:16:00            Ambient
## 271  2017-02-12 10:16:00            Ambient
## 272  2017-02-12 10:16:00            Ambient
## 273  2017-02-12 10:16:00            Ambient
## 274  2017-02-12 10:16:00            Ambient
## 275  2017-02-12 10:16:00            Ambient
## 276  2017-02-12 10:16:00            Ambient
## 277  2017-02-12 10:16:00            Ambient
## 278  2017-02-12 10:16:00            Ambient
## 279  2017-02-12 10:16:00            Ambient
## 280  2017-02-12 10:16:00            Ambient
## 281  2017-02-12 10:16:00            Ambient
## 282  2017-02-12 10:16:00            Ambient
## 283  2017-02-12 10:16:00            Ambient
## 284  2017-02-12 10:16:00            Ambient
## 285  2017-02-12 10:16:00            Ambient
## 286  2017-02-12 07:22:00           Kerosene
## 287  2017-02-12 07:22:00           Kerosene
## 288  2017-02-12 07:22:00           Kerosene
## 289  2017-02-12 07:22:00           Kerosene
## 290  2017-02-12 07:22:00           Kerosene
## 291  2017-02-12 07:22:00           Kerosene
## 292  2017-02-12 07:22:00           Kerosene
## 293  2017-02-12 07:22:00           Kerosene
## 294  2017-02-12 07:22:00           Kerosene
## 295  2017-02-12 07:22:00           Kerosene
## 296  2017-02-12 07:22:00           Kerosene
## 297  2017-02-12 07:22:00           Kerosene
## 298  2017-02-12 07:22:00           Kerosene
## 299  2017-02-12 07:22:00           Kerosene
## 300  2017-02-12 07:22:00           Kerosene
## 301  2017-02-12 07:22:00           Kerosene
## 302  2017-02-12 07:22:00           Kerosene
## 303  2017-02-12 07:22:00           Kerosene
## 304  2017-02-12 07:22:00           Kerosene
## 305  2017-02-12 07:22:00           Kerosene
## 306  2017-02-12 07:22:00           Kerosene
## 307  2017-02-12 07:22:00           Kerosene
## 308  2017-02-12 07:22:00           Kerosene
## 309  2017-02-12 07:22:00           Kerosene
## 310  2017-02-12 07:22:00           Kerosene
## 311  2017-02-12 07:22:00           Kerosene
## 312  2017-02-12 07:22:00           Kerosene
## 313  2017-02-12 07:22:00           Kerosene
## 314  2017-02-12 07:22:00           Kerosene
## 315  2017-02-12 07:22:00           Kerosene
## 316  2017-02-12 07:22:00           Kerosene
## 317  2017-02-12 07:22:00           Kerosene
## 318  2017-02-12 07:22:00           Kerosene
## 319  2017-02-12 07:22:00           Kerosene
## 320  2017-02-12 07:22:00           Kerosene
## 321  2017-02-12 07:22:00           Kerosene
## 322  2017-02-12 07:22:00           Kerosene
## 323  2017-02-12 07:22:00           Kerosene
## 324  2017-02-12 07:22:00           Kerosene
## 325  2017-02-12 07:22:00           Kerosene
## 326  2017-02-12 07:22:00           Kerosene
## 327  2017-02-12 07:22:00           Kerosene
## 328  2017-02-12 07:22:00           Kerosene
## 329  2017-02-12 07:22:00           Kerosene
## 330  2017-02-12 07:22:00           Kerosene
## 331  2017-02-12 07:22:00           Kerosene
## 332  2017-02-12 07:22:00           Kerosene
## 333  2017-02-12 07:22:00           Kerosene
## 334  2017-02-12 07:22:00           Kerosene
## 335  2017-02-12 07:22:00           Kerosene
## 336  2017-02-12 07:22:00           Kerosene
## 337  2017-02-12 07:22:00           Kerosene
## 338  2017-02-12 07:22:00           Kerosene
## 339  2017-02-12 07:22:00           Kerosene
## 340  2017-02-12 07:22:00           Kerosene
## 341  2017-02-12 07:22:00           Kerosene
## 342  2017-02-12 07:22:00           Kerosene
## 343  2017-02-12 07:22:00           Kerosene
## 344  2017-02-12 07:22:00           Kerosene
## 345  2017-02-12 07:22:00           Kerosene
## 346  2017-02-12 07:22:00           Kerosene
## 347  2017-02-12 07:22:00           Kerosene
## 348  2017-02-12 07:22:00           Kerosene
## 349  2017-02-12 07:22:00           Kerosene
## 350  2017-02-12 07:22:00           Kerosene
## 351  2017-02-12 07:22:00           Kerosene
## 352  2017-02-12 07:22:00           Kerosene
## 353  2017-02-12 07:22:00           Kerosene
## 354  2017-02-12 07:22:00           Kerosene
## 355  2017-02-12 07:22:00           Kerosene
## 356  2017-02-12 07:22:00           Kerosene
## 357  2017-02-12 07:22:00           Kerosene
## 358  2017-02-12 07:22:00           Kerosene
## 359  2017-02-12 07:22:00           Kerosene
## 360  2017-02-12 07:22:00           Kerosene
## 361  2017-02-12 07:22:00           Kerosene
## 362  2017-02-12 07:22:00           Kerosene
## 363  2017-02-12 07:22:00           Kerosene
## 364  2017-02-12 07:22:00           Kerosene
## 365  2017-02-12 07:22:00           Kerosene
## 366  2017-02-12 07:22:00           Kerosene
## 367  2017-02-12 07:22:00           Kerosene
## 368  2017-02-12 07:22:00           Kerosene
## 369  2017-11-15 11:59:00          CleanCook
## 370  2017-11-15 11:59:00          CleanCook
## 371  2017-11-15 11:59:00          CleanCook
## 372  2017-11-15 11:59:00          CleanCook
## 373  2017-11-15 11:59:00          CleanCook
## 374  2017-11-15 11:59:00          CleanCook
## 375  2017-11-15 11:59:00          CleanCook
## 376  2017-11-15 11:59:00          CleanCook
## 377  2017-11-15 11:59:00          CleanCook
## 378  2017-11-15 11:59:00          CleanCook
## 379  2017-11-15 11:59:00          CleanCook
## 380  2017-11-15 11:59:00          CleanCook
## 381  2017-11-15 11:59:00          CleanCook
## 382  2017-11-15 11:59:00          CleanCook
## 383  2017-11-15 22:26:00           Kerosene
## 384  2017-11-15 22:26:00           Kerosene
## 385  2017-11-15 22:26:00           Kerosene
## 386  2017-11-15 22:26:00           Kerosene
## 387  2017-11-15 22:26:00           Kerosene
## 388  2017-11-15 22:26:00           Kerosene
## 389  2017-11-15 22:26:00           Kerosene
## 390  2017-11-15 22:26:00           Kerosene
## 391  2017-11-15 22:26:00           Kerosene
## 392  2017-11-15 22:26:00           Kerosene
## 393  2017-11-15 22:26:00           Kerosene
## 394  2017-11-15 22:26:00           Kerosene
## 395  2017-11-15 22:26:00           Kerosene
## 396  2017-11-15 22:26:00           Kerosene
## 397  2017-11-15 22:26:00           Kerosene
## 398  2017-11-15 22:26:00           Kerosene
## 399  2018-01-21 00:04:00            Ambient
## 400  2018-01-21 00:02:00          CleanCook
## 401  2018-01-21 09:49:00           Kerosene
## 402  2018-01-21 09:49:00           Kerosene
## 403  2018-01-21 09:49:00           Kerosene
## 404  2018-01-21 09:49:00           Kerosene
## 405  2018-01-21 09:49:00           Kerosene
## 406  2018-01-21 09:49:00           Kerosene
## 407  2018-01-21 09:49:00           Kerosene
## 408  2018-01-21 09:49:00           Kerosene
## 409  2018-01-21 09:49:00           Kerosene
## 410  2018-01-21 09:49:00           Kerosene
## 411  2018-01-21 09:49:00           Kerosene
## 412  2018-01-21 09:49:00           Kerosene
## 413  2018-01-21 09:49:00           Kerosene
## 414  2018-01-21 09:49:00           Kerosene
## 415  2018-01-21 09:49:00           Kerosene
## 416  2018-01-21 09:49:00           Kerosene
## 417  2018-01-21 09:49:00           Kerosene
## 418  2018-01-21 09:49:00           Kerosene
## 419  2018-01-21 09:49:00           Kerosene
## 420  2018-02-04 00:07:00           Kerosene
## 421  2018-02-06 10:04:00           Kerosene
## 422  2018-02-06 10:04:00           Kerosene
## 423  2018-02-04 07:52:00          CleanCook
## 424  2018-02-04 07:52:00          CleanCook
## 425  2018-02-04 07:52:00          CleanCook
## 426  2018-02-04 07:52:00          CleanCook
## 427  2018-02-04 07:52:00          CleanCook
## 428  2018-02-04 07:52:00          CleanCook
## 429  2018-02-04 07:52:00          CleanCook
## 430  2018-02-04 07:52:00          CleanCook
## 431  2018-02-04 07:52:00          CleanCook
## 432  2018-02-04 07:52:00          CleanCook
## 433  2018-02-04 07:52:00          CleanCook
## 434  2018-02-04 07:52:00          CleanCook
## 435  2018-02-04 07:52:00          CleanCook
## 436  2018-02-04 07:52:00          CleanCook
## 437  2018-02-04 07:52:00          CleanCook
## 438  2018-02-04 07:52:00          CleanCook
## 439  2018-02-04 07:52:00          CleanCook
## 440  2018-02-04 07:52:00          CleanCook
## 441  2018-02-04 07:52:00          CleanCook
## 442  2018-02-04 07:52:00          CleanCook
## 443  2018-02-04 07:52:00          CleanCook
## 444  2018-02-04 07:52:00          CleanCook
## 445  2018-01-07 00:06:00           Kerosene
## 446  2018-01-07 05:49:00          CleanCook
## 447  2018-01-07 05:49:00          CleanCook
## 448  2018-01-07 05:49:00          CleanCook
## 449  2018-01-07 05:49:00          CleanCook
## 450  2018-01-07 05:49:00          CleanCook
## 451  2018-01-07 05:49:00          CleanCook
## 452  2018-01-07 05:49:00          CleanCook
## 453  2018-01-07 05:49:00          CleanCook
## 454  2018-01-07 05:49:00          CleanCook
## 455  2018-01-07 05:49:00          CleanCook
## 456  2018-01-07 05:49:00          CleanCook
## 457  2018-01-07 05:49:00          CleanCook
## 458  2018-01-07 05:49:00          CleanCook
## 459  2018-01-07 05:49:00          CleanCook
## 460  2018-01-07 05:49:00          CleanCook
## 461  2018-01-07 05:49:00          CleanCook
## 462  2018-01-07 05:49:00          CleanCook
## 463  2018-01-07 05:49:00          CleanCook
## 464  2018-01-07 05:49:00          CleanCook
## 465  2018-01-07 05:49:00          CleanCook
## 466  2018-01-07 05:49:00          CleanCook
## 467  2018-01-07 05:49:00          CleanCook
## 468  2018-01-07 05:49:00          CleanCook
## 469  2018-01-11 17:42:00           Kerosene
## 470  2018-01-11 17:42:00           Kerosene
## 471  2017-12-10 00:04:00           Kerosene
## 472  2017-12-10 07:12:00          CleanCook
## 473  2017-12-10 07:12:00          CleanCook
## 474  2017-12-10 07:12:00          CleanCook
## 475  2017-12-10 07:12:00          CleanCook
## 476  2017-12-10 07:12:00          CleanCook
## 477  2017-12-10 07:12:00          CleanCook
## 478  2017-12-10 07:12:00          CleanCook
## 479  2017-12-10 07:12:00          CleanCook
## 480  2017-12-10 07:12:00          CleanCook
## 481  2017-12-10 07:12:00          CleanCook
## 482  2017-12-10 07:12:00          CleanCook
## 483  2017-12-10 07:12:00          CleanCook
## 484  2017-12-10 07:12:00          CleanCook
## 485  2017-12-10 07:12:00          CleanCook
## 486  2017-12-10 07:12:00          CleanCook
## 487  2017-12-10 07:12:00          CleanCook
## 488  2017-12-10 07:12:00          CleanCook
## 489  2017-12-10 07:12:00          CleanCook
## 490  2017-12-10 07:12:00          CleanCook
## 491  2017-12-10 07:12:00          CleanCook
## 492  2017-12-10 07:12:00          CleanCook
## 493  2017-12-10 07:12:00          CleanCook
## 494  2017-12-10 07:12:00          CleanCook
## 495  2017-12-10 07:12:00          CleanCook
## 496  2017-12-10 07:12:00          CleanCook
## 497  2017-12-10 07:12:00          CleanCook
## 498  2017-12-10 07:12:00          CleanCook
## 499  2017-12-10 07:12:00          CleanCook
## 500  2017-12-10 07:12:00          CleanCook
## 501  2017-12-10 07:12:00          CleanCook
## 502  2017-12-10 07:12:00          CleanCook
## 503  2017-12-10 07:12:00          CleanCook
## 504  2017-12-10 07:12:00          CleanCook
## 505  2017-12-10 07:12:00          CleanCook
## 506  2017-12-10 07:12:00          CleanCook
## 507  2017-12-10 07:12:00          CleanCook
## 508  2017-12-10 07:12:00          CleanCook
## 509  2017-12-10 07:12:00          CleanCook
## 510  2017-12-10 07:12:00          CleanCook
## 511  2017-12-10 07:12:00          CleanCook
## 512  2017-12-10 07:12:00          CleanCook
## 513  2017-12-10 07:12:00          CleanCook
## 514  2017-12-10 07:12:00          CleanCook
## 515  2017-12-10 07:12:00          CleanCook
## 516  2017-12-31 06:15:00           Kerosene
## 517  2017-12-31 06:15:00           Kerosene
## 518  2017-12-31 06:15:00           Kerosene
## 519  2017-12-31 06:15:00           Kerosene
## 520  2017-12-31 06:15:00           Kerosene
## 521  2017-12-31 06:15:00           Kerosene
## 522  2017-12-31 06:15:00           Kerosene
## 523  2017-12-31 06:15:00           Kerosene
## 524  2017-12-31 06:15:00           Kerosene
## 525  2017-11-30 00:03:00           Kerosene
## 526  2017-11-30 00:00:00           Kerosene
## 527  2017-11-30 17:26:00          CleanCook
## 528  2017-11-30 17:26:00          CleanCook
## 529  2017-11-30 17:26:00          CleanCook
## 530  2017-11-30 17:26:00          CleanCook
## 531  2017-11-30 17:26:00          CleanCook
## 532  2017-11-30 17:26:00          CleanCook
## 533  2017-11-30 17:26:00          CleanCook
## 534  2017-11-30 17:26:00          CleanCook
## 535  2017-11-30 17:26:00          CleanCook
## 536  2017-11-30 17:26:00          CleanCook
## 537  2017-11-30 17:26:00          CleanCook
## 538  2017-11-30 17:26:00          CleanCook
## 539  2017-11-30 17:26:00          CleanCook
## 540  2017-11-30 17:26:00          CleanCook
## 541  2017-11-30 17:26:00          CleanCook
## 542  2017-11-30 17:26:00          CleanCook
## 543  2017-11-30 17:26:00          CleanCook
## 544  2017-11-30 17:26:00          CleanCook
## 545  2017-11-30 17:26:00          CleanCook
## 546  2017-11-30 17:26:00          CleanCook
## 547  2017-11-30 17:26:00          CleanCook
## 548  2017-11-30 17:26:00          CleanCook
## 549  2017-11-30 17:26:00          CleanCook
## 550  2017-11-30 17:26:00          CleanCook
## 551  2017-02-12 08:40:00           Kerosene
## 552  2017-02-12 08:40:00           Kerosene
## 553  2017-02-12 08:40:00           Kerosene
## 554  2017-02-12 08:40:00           Kerosene
## 555  2017-02-12 08:40:00           Kerosene
## 556  2017-02-12 08:40:00           Kerosene
## 557  2017-02-12 08:40:00           Kerosene
## 558  2017-02-12 08:40:00           Kerosene
## 559  2017-02-12 08:40:00           Kerosene
## 560  2017-02-12 08:40:00           Kerosene
## 561  2017-02-12 08:40:00           Kerosene
## 562  2017-02-12 08:40:00           Kerosene
## 563  2017-02-12 08:40:00           Kerosene
## 564  2017-02-12 08:40:00           Kerosene
## 565  2017-02-12 08:40:00           Kerosene
## 566  2017-02-12 08:40:00           Kerosene
## 567  2017-02-12 08:40:00           Kerosene
## 568  2017-02-12 08:40:00           Kerosene
## 569  2017-02-12 08:40:00           Kerosene
## 570  2017-02-12 08:40:00           Kerosene
## 571  2017-02-12 08:40:00           Kerosene
## 572  2017-02-12 08:40:00           Kerosene
## 573  2017-02-12 08:40:00           Kerosene
## 574  2017-02-12 08:40:00           Kerosene
## 575  2017-02-12 08:40:00           Kerosene
## 576  2017-02-12 08:40:00           Kerosene
## 577  2017-02-12 08:40:00           Kerosene
## 578  2017-02-12 08:40:00           Kerosene
## 579  2017-02-12 08:40:00           Kerosene
## 580  2017-02-12 08:40:00           Kerosene
## 581  2017-02-12 08:40:00           Kerosene
## 582  2017-02-12 08:40:00           Kerosene
## 583  2017-02-12 08:40:00           Kerosene
## 584  2017-02-12 08:40:00           Kerosene
## 585  2017-02-12 08:40:00           Kerosene
## 586  2017-02-12 08:40:00           Kerosene
## 587  2017-02-12 08:40:00           Kerosene
## 588  2017-02-12 08:40:00           Kerosene
## 589  2017-02-12 08:40:00           Kerosene
## 590  2017-02-12 08:40:00           Kerosene
## 591  2017-02-12 08:40:00           Kerosene
## 592  2017-02-12 05:46:00          CleanCook
## 593  2017-02-12 05:46:00          CleanCook
## 594  2017-02-12 05:46:00          CleanCook
## 595  2017-02-12 05:46:00          CleanCook
## 596  2017-02-12 05:46:00          CleanCook
## 597  2017-02-12 05:46:00          CleanCook
## 598  2017-02-12 05:46:00          CleanCook
## 599  2017-02-12 05:46:00          CleanCook
## 600  2017-02-12 05:46:00          CleanCook
## 601  2017-02-12 05:46:00          CleanCook
## 602  2017-02-12 05:46:00          CleanCook
## 603  2017-02-12 05:46:00          CleanCook
## 604  2017-02-12 05:46:00          CleanCook
## 605  2017-02-12 05:46:00          CleanCook
## 606  2017-02-12 05:46:00          CleanCook
## 607  2017-02-12 05:46:00          CleanCook
## 608  2017-02-12 05:46:00          CleanCook
## 609  2017-02-12 05:46:00          CleanCook
## 610  2017-02-12 05:46:00          CleanCook
## 611  2017-02-12 05:46:00          CleanCook
## 612  2017-02-12 05:46:00          CleanCook
## 613  2017-02-12 05:46:00          CleanCook
## 614  2017-02-12 05:46:00          CleanCook
## 615  2017-02-12 05:46:00          CleanCook
## 616  2017-02-12 05:46:00          CleanCook
## 617  2017-02-12 05:46:00          CleanCook
## 618  2017-02-12 05:46:00          CleanCook
## 619  2017-02-12 05:46:00          CleanCook
## 620  2017-02-12 05:46:00          CleanCook
## 621  2017-02-12 05:46:00          CleanCook
## 622  2017-02-12 05:46:00          CleanCook
## 623  2017-02-12 05:46:00          CleanCook
## 624  2017-02-12 05:46:00          CleanCook
## 625  2017-02-12 05:46:00          CleanCook
## 626  2017-02-12 05:46:00          CleanCook
## 627  2017-02-12 05:46:00          CleanCook
## 628  2017-02-12 05:46:00          CleanCook
## 629  2017-02-12 05:46:00          CleanCook
## 630  2017-02-12 05:46:00          CleanCook
## 631  2017-02-12 05:46:00          CleanCook
## 632  2017-02-12 05:46:00          CleanCook
## 633  2017-02-12 05:46:00          CleanCook
## 634  2017-02-12 05:46:00          CleanCook
## 635  2017-02-12 05:46:00          CleanCook
## 636  2017-02-12 05:46:00          CleanCook
## 637  2017-02-12 05:46:00          CleanCook
## 638  2017-02-12 05:46:00          CleanCook
## 639  2017-02-12 05:46:00          CleanCook
## 640  2017-02-12 05:46:00          CleanCook
## 641  2017-02-12 05:46:00          CleanCook
## 642  2017-02-12 05:46:00          CleanCook
## 643  2017-02-12 05:46:00          CleanCook
## 644  2017-02-12 05:46:00          CleanCook
## 645  2017-02-12 05:46:00          CleanCook
## 646  2017-02-12 05:46:00          CleanCook
## 647  2017-02-12 05:46:00          CleanCook
## 648  2017-02-12 05:46:00          CleanCook
## 649  2017-02-12 05:46:00          CleanCook
## 650  2017-02-12 05:46:00          CleanCook
## 651  2017-02-12 05:46:00          CleanCook
## 652  2017-02-12 05:46:00          CleanCook
## 653  2017-02-12 05:46:00          CleanCook
## 654  2017-02-12 05:46:00          CleanCook
## 655  2017-02-12 05:46:00          CleanCook
## 656  2017-02-12 05:46:00          CleanCook
## 657  2017-02-12 05:46:00          CleanCook
## 658  2017-02-12 05:46:00          CleanCook
## 659  2017-02-12 05:46:00          CleanCook
## 660  2017-02-12 05:46:00          CleanCook
## 661  2017-02-12 05:46:00          CleanCook
## 662  2017-02-12 05:46:00          CleanCook
## 663  2017-02-12 05:46:00          CleanCook
## 664  2017-02-12 05:46:00          CleanCook
## 665  2017-02-12 05:46:00          CleanCook
## 666  2017-02-12 05:46:00          CleanCook
## 667  2017-02-12 05:46:00          CleanCook
## 668  2017-02-12 05:46:00          CleanCook
## 669  2017-02-12 05:46:00          CleanCook
## 670  2017-02-12 05:46:00          CleanCook
## 671  2017-02-12 05:46:00          CleanCook
## 672  2017-02-12 05:46:00          CleanCook
## 673  2017-02-12 05:46:00          CleanCook
## 674  2017-02-12 05:46:00          CleanCook
## 675  2017-02-12 05:46:00          CleanCook
## 676  2017-02-12 05:46:00          CleanCook
## 677  2017-02-12 05:46:00          CleanCook
## 678  2017-02-12 05:46:00          CleanCook
## 679  2017-02-12 05:46:00          CleanCook
## 680  2017-02-12 05:46:00          CleanCook
## 681  2017-02-12 05:46:00          CleanCook
## 682  2017-02-12 05:46:00          CleanCook
## 683  2017-02-12 05:46:00          CleanCook
## 684  2017-02-12 05:46:00          CleanCook
## 685  2017-02-12 05:46:00          CleanCook
## 686  2017-02-12 05:46:00          CleanCook
## 687  2017-02-12 05:46:00          CleanCook
## 688  2017-02-12 05:46:00          CleanCook
## 689  2017-02-12 05:46:00          CleanCook
## 690  2017-02-12 05:46:00          CleanCook
## 691  2017-02-12 05:46:00          CleanCook
## 692  2017-02-12 05:46:00          CleanCook
## 693  2017-02-12 05:46:00          CleanCook
## 694  2017-02-12 05:46:00          CleanCook
## 695  2017-02-12 05:46:00          CleanCook
## 696  2017-02-12 08:53:00           Kerosene
## 697  2017-02-12 08:53:00           Kerosene
## 698  2017-02-12 08:53:00           Kerosene
## 699  2017-02-12 08:53:00           Kerosene
## 700  2017-02-12 08:53:00           Kerosene
## 701  2017-02-12 08:53:00           Kerosene
## 702  2017-02-12 08:53:00           Kerosene
## 703  2017-02-12 08:53:00           Kerosene
## 704  2017-02-12 08:53:00           Kerosene
## 705  2017-02-12 08:53:00           Kerosene
## 706  2017-02-12 08:53:00           Kerosene
## 707  2017-02-12 08:53:00           Kerosene
## 708  2017-02-12 08:53:00           Kerosene
## 709  2017-02-12 08:53:00           Kerosene
## 710  2017-02-12 08:53:00           Kerosene
## 711  2017-02-12 08:53:00           Kerosene
## 712  2017-02-12 08:53:00           Kerosene
## 713  2017-02-12 08:53:00           Kerosene
## 714  2017-02-12 08:53:00           Kerosene
## 715  2017-02-12 08:53:00           Kerosene
## 716  2017-02-12 08:53:00           Kerosene
## 717  2017-02-12 08:53:00           Kerosene
## 718  2017-02-12 08:53:00           Kerosene
## 719  2017-02-12 08:53:00           Kerosene
## 720  2017-02-12 08:53:00           Kerosene
## 721  2017-02-12 08:53:00           Kerosene
## 722  2017-02-12 08:53:00           Kerosene
## 723  2017-02-12 08:53:00           Kerosene
## 724  2017-02-12 08:53:00           Kerosene
## 725  2017-02-12 08:53:00           Kerosene
## 726  2017-02-12 08:53:00           Kerosene
## 727  2017-02-12 08:53:00           Kerosene
## 728  2017-02-12 08:53:00           Kerosene
## 729  2017-02-12 08:53:00           Kerosene
## 730  2017-02-12 08:53:00           Kerosene
## 731  2017-02-12 08:53:00           Kerosene
## 732  2017-02-12 08:53:00           Kerosene
## 733  2017-02-12 08:53:00           Kerosene
## 734  2017-02-12 08:53:00           Kerosene
## 735  2017-02-12 08:53:00           Kerosene
## 736  2017-02-12 08:53:00           Kerosene
## 737  2017-02-12 08:53:00           Kerosene
## 738  2017-02-12 08:53:00           Kerosene
## 739  2017-02-12 08:53:00           Kerosene
## 740  2017-02-12 08:53:00           Kerosene
## 741  2017-02-12 08:53:00           Kerosene
## 742  2017-02-12 08:53:00           Kerosene
## 743  2017-02-12 08:53:00           Kerosene
## 744  2017-02-12 08:53:00           Kerosene
## 745  2017-02-12 08:53:00           Kerosene
## 746  2017-02-12 08:53:00           Kerosene
## 747  2017-02-12 08:53:00           Kerosene
## 748  2017-02-12 08:53:00           Kerosene
## 749  2017-02-12 08:53:00           Kerosene
## 750  2017-02-12 08:53:00           Kerosene
## 751  2017-02-12 08:53:00           Kerosene
## 752  2017-02-12 08:53:00           Kerosene
## 753  2017-02-12 08:53:00           Kerosene
## 754  2017-02-12 08:53:00           Kerosene
## 755  2017-02-12 08:53:00           Kerosene
## 756  2017-02-12 08:53:00           Kerosene
## 757  2017-02-12 08:53:00           Kerosene
## 758  2017-02-12 08:53:00           Kerosene
## 759  2017-02-12 08:53:00           Kerosene
## 760  2017-02-12 08:53:00           Kerosene
## 761  2017-11-15 00:07:00           Kerosene
## 762  2017-11-19 14:22:00           Kerosene
## 763  2017-11-19 14:22:00           Kerosene
## 764  2017-11-19 14:22:00           Kerosene
## 765  2017-11-19 14:22:00           Kerosene
## 766  2017-11-15 15:59:00          CleanCook
## 767  2017-11-15 15:59:00          CleanCook
## 768  2017-11-15 15:59:00          CleanCook
## 769  2017-11-15 15:59:00          CleanCook
## 770  2017-11-15 15:59:00          CleanCook
## 771  2017-11-15 15:59:00          CleanCook
## 772  2017-11-15 15:59:00          CleanCook
## 773  2017-11-15 15:59:00          CleanCook
## 774  2017-11-15 15:59:00          CleanCook
## 775  2017-11-15 15:59:00          CleanCook
## 776  2017-11-15 15:59:00          CleanCook
## 777  2017-11-15 15:59:00          CleanCook
## 778  2017-11-15 15:59:00          CleanCook
## 779  2017-11-15 15:59:00          CleanCook
## 780  2017-11-15 15:59:00          CleanCook
## 781  2017-11-15 15:59:00          CleanCook
## 782  2017-11-15 15:59:00          CleanCook
## 783  2017-11-15 15:59:00          CleanCook
## 784  2017-11-15 15:59:00          CleanCook
## 785  2017-11-15 15:59:00          CleanCook
## 786  2017-11-15 15:59:00          CleanCook
## 787  2017-11-15 15:59:00          CleanCook
## 788  2017-11-15 15:59:00          CleanCook
## 789  2017-11-15 15:59:00          CleanCook
## 790  2017-11-15 15:59:00          CleanCook
## 791  2017-11-15 15:59:00          CleanCook
## 792  2017-10-15 18:54:00           Kerosene
## 793  2017-10-15 18:54:00           Kerosene
## 794  2017-10-15 18:54:00           Kerosene
## 795  2017-10-15 18:54:00           Kerosene
## 796  2017-10-15 18:54:00           Kerosene
## 797  2017-10-15 18:54:00           Kerosene
## 798  2017-10-15 18:54:00           Kerosene
## 799  2017-10-15 18:54:00           Kerosene
## 800  2017-10-15 18:54:00           Kerosene
## 801  2017-10-15 18:54:00           Kerosene
## 802  2017-10-15 18:54:00           Kerosene
## 803  2017-10-15 18:54:00           Kerosene
## 804  2017-10-15 18:54:00           Kerosene
## 805  2017-10-15 18:54:00           Kerosene
## 806  2017-10-15 18:54:00           Kerosene
## 807  2017-10-15 18:54:00           Kerosene
## 808  2017-10-15 18:54:00           Kerosene
## 809  2017-10-15 18:54:00           Kerosene
## 810  2017-10-15 09:50:00          CleanCook
## 811  2017-10-15 09:50:00          CleanCook
## 812  2017-10-15 09:50:00          CleanCook
## 813  2017-10-15 09:50:00          CleanCook
## 814  2017-10-15 09:50:00          CleanCook
## 815  2017-10-15 09:50:00          CleanCook
## 816  2017-10-15 09:50:00          CleanCook
## 817  2017-10-15 09:50:00          CleanCook
## 818  2017-10-15 09:50:00          CleanCook
## 819  2017-10-15 09:50:00          CleanCook
## 820  2017-10-15 09:50:00          CleanCook
## 821  2017-10-15 09:50:00          CleanCook
## 822  2017-10-15 09:50:00          CleanCook
## 823  2017-10-15 09:50:00          CleanCook
## 824  2017-10-15 09:50:00          CleanCook
## 825  2017-10-15 09:50:00          CleanCook
## 826  2017-10-15 09:50:00          CleanCook
## 827  2017-10-15 09:50:00          CleanCook
## 828  2017-10-15 09:50:00          CleanCook
## 829  2017-10-15 09:50:00          CleanCook
## 830  2017-10-15 09:50:00          CleanCook
## 831  2017-10-16 06:18:00                LPG
## 832  2017-10-16 06:18:00                LPG
## 833  2017-10-16 06:18:00                LPG
## 834  2017-10-16 06:18:00                LPG
## 835  2017-10-16 06:18:00                LPG
## 836  2017-10-16 06:18:00                LPG
## 837  2017-10-16 06:18:00                LPG
## 838  2017-10-16 06:18:00                LPG
## 839  2017-10-16 06:18:00                LPG
## 840  2017-10-16 06:18:00                LPG
## 841  2017-10-16 06:18:00                LPG
## 842  2017-10-16 06:18:00                LPG
## 843  2017-10-16 06:18:00                LPG
## 844  2017-10-16 06:18:00                LPG
## 845  2017-10-16 06:18:00                LPG
## 846  2017-10-16 06:18:00                LPG
## 847  2017-10-16 06:18:00                LPG
## 848  2017-10-09 08:39:00          CleanCook
## 849  2017-10-09 08:39:00          CleanCook
## 850  2017-10-09 08:39:00          CleanCook
## 851  2017-10-09 08:39:00          CleanCook
## 852  2017-10-09 08:39:00          CleanCook
## 853  2017-10-09 08:39:00          CleanCook
## 854  2017-10-09 08:39:00          CleanCook
## 855  2017-10-09 08:39:00          CleanCook
## 856  2017-10-09 08:39:00          CleanCook
## 857  2017-10-09 08:39:00          CleanCook
## 858  2017-10-09 12:43:00                LPG
## 859  2017-10-09 12:43:00                LPG
## 860  2017-10-09 12:43:00                LPG
## 861  2017-10-09 12:43:00                LPG
## 862  2017-10-09 12:43:00                LPG
## 863  2017-10-09 12:43:00                LPG
## 864  2017-10-09 12:43:00                LPG
## 865  2017-10-09 12:43:00                LPG
## 866  2017-10-09 12:43:00                LPG
## 867  2017-10-09 13:08:00           Kerosene
## 868  2017-10-09 13:08:00           Kerosene
## 869  2017-10-09 13:08:00           Kerosene
## 870  2018-01-21 00:09:00           Kerosene
## 871  2018-01-21 09:32:00          CleanCook
## 872  2018-01-21 09:32:00          CleanCook
## 873  2018-01-21 09:32:00          CleanCook
## 874  2018-01-21 09:32:00          CleanCook
## 875  2018-01-21 09:32:00          CleanCook
## 876  2018-01-21 09:32:00          CleanCook
## 877  2018-01-21 09:32:00          CleanCook
## 878  2018-01-21 09:32:00          CleanCook
## 879  2018-01-21 09:32:00          CleanCook
## 880  2018-01-21 09:32:00          CleanCook
## 881  2018-01-21 09:32:00          CleanCook
## 882  2018-01-21 09:32:00          CleanCook
## 883  2018-01-21 09:32:00          CleanCook
## 884  2018-01-21 09:32:00          CleanCook
## 885  2018-01-21 09:32:00          CleanCook
## 886  2018-01-21 09:32:00          CleanCook
## 887  2018-01-21 09:32:00          CleanCook
## 888  2018-01-21 09:32:00          CleanCook
## 889  2018-01-21 09:32:00          CleanCook
## 890  2018-01-28 20:46:00           Kerosene
## 891  2018-01-28 20:46:00           Kerosene
## 892  2018-01-28 20:46:00           Kerosene
## 893  2018-01-28 20:46:00           Kerosene
## 894  2018-01-28 20:46:00           Kerosene
## 895  2018-01-28 20:46:00           Kerosene
## 896  2018-01-28 20:46:00           Kerosene
## 897  2018-02-04 11:13:00           Kerosene
## 898  2018-02-04 11:13:00           Kerosene
## 899  2018-02-04 11:13:00           Kerosene
## 900  2018-02-04 11:13:00           Kerosene
## 901  2018-02-04 11:13:00           Kerosene
## 902  2018-02-04 11:13:00           Kerosene
## 903  2018-02-04 11:13:00           Kerosene
## 904  2018-02-04 11:13:00           Kerosene
## 905  2018-02-04 11:13:00           Kerosene
## 906  2018-02-04 11:13:00           Kerosene
## 907  2018-02-04 11:13:00           Kerosene
## 908  2018-02-04 11:13:00           Kerosene
## 909  2018-02-04 11:13:00           Kerosene
## 910  2018-02-04 11:13:00           Kerosene
## 911  2018-02-04 11:13:00           Kerosene
## 912  2018-02-04 11:13:00           Kerosene
## 913  2018-02-04 11:13:00           Kerosene
## 914  2018-02-04 11:13:00           Kerosene
## 915  2018-02-04 11:13:00           Kerosene
## 916  2018-02-04 11:13:00           Kerosene
## 917  2018-02-04 11:13:00           Kerosene
## 918  2018-02-04 11:13:00           Kerosene
## 919  2018-02-04 11:13:00           Kerosene
## 920  2018-02-04 11:13:00           Kerosene
## 921  2018-02-04 11:13:00           Kerosene
## 922  2018-02-04 11:13:00           Kerosene
## 923  2018-02-04 11:13:00           Kerosene
## 924  2018-02-04 11:13:00           Kerosene
## 925  2018-02-04 11:13:00           Kerosene
## 926  2018-02-04 11:13:00           Kerosene
## 927  2018-02-04 11:13:00           Kerosene
## 928  2018-02-04 11:13:00           Kerosene
## 929  2018-02-04 11:13:00           Kerosene
## 930  2018-02-04 11:13:00           Kerosene
## 931  2018-02-04 11:13:00           Kerosene
## 932  2018-02-04 11:13:00           Kerosene
## 933  2018-02-04 11:13:00           Kerosene
## 934  2018-02-04 11:13:00           Kerosene
## 935  2018-02-04 11:13:00           Kerosene
## 936  2018-02-04 00:05:00          CleanCook
## 937  2018-02-04 00:05:00          CleanCook
## 938  2018-02-04 00:05:00          CleanCook
## 939  2018-02-04 00:05:00          CleanCook
## 940  2018-02-04 00:05:00          CleanCook
## 941  2018-02-04 00:05:00          CleanCook
## 942  2018-02-04 00:05:00          CleanCook
## 943  2018-02-04 00:05:00          CleanCook
## 944  2018-02-04 00:05:00          CleanCook
## 945  2018-02-04 00:05:00          CleanCook
## 946  2018-02-04 00:05:00          CleanCook
## 947  2018-02-04 00:05:00          CleanCook
## 948  2018-02-04 00:05:00          CleanCook
## 949  2018-02-04 00:05:00          CleanCook
## 950  2018-02-04 00:05:00          CleanCook
## 951  2018-02-04 00:05:00          CleanCook
## 952  2018-02-04 00:05:00          CleanCook
## 953  2018-02-04 00:05:00          CleanCook
## 954  2018-02-04 00:05:00          CleanCook
## 955  2018-02-04 00:05:00          CleanCook
## 956  2018-02-04 00:05:00          CleanCook
## 957  2018-02-04 00:05:00          CleanCook
## 958  2018-02-04 00:05:00          CleanCook
## 959  2018-02-04 00:05:00          CleanCook
## 960  2018-02-04 00:05:00          CleanCook
## 961  2018-02-04 00:05:00          CleanCook
## 962  2018-02-04 00:05:00          CleanCook
## 963  2018-02-04 00:05:00          CleanCook
## 964  2018-02-04 00:05:00          CleanCook
## 965  2018-02-04 00:05:00          CleanCook
## 966  2018-02-04 00:05:00          CleanCook
## 967  2018-02-04 00:05:00          CleanCook
## 968  2018-02-04 00:05:00          CleanCook
## 969  2018-02-04 00:05:00          CleanCook
## 970  2018-02-04 00:05:00          CleanCook
## 971  2018-02-04 00:05:00          CleanCook
## 972  2018-02-04 00:05:00          CleanCook
## 973  2018-02-04 00:05:00          CleanCook
## 974  2018-02-04 00:05:00          CleanCook
## 975  2018-02-04 00:05:00          CleanCook
## 976  2018-02-04 00:05:00          CleanCook
## 977  2018-01-07 18:08:00           Kerosene
## 978  2018-01-07 18:08:00           Kerosene
## 979  2018-01-07 18:08:00           Kerosene
## 980  2018-01-07 18:08:00           Kerosene
## 981  2018-01-07 18:08:00           Kerosene
## 982  2018-01-07 18:08:00           Kerosene
## 983  2018-01-07 18:08:00           Kerosene
## 984  2018-01-07 18:08:00           Kerosene
## 985  2018-01-07 18:08:00           Kerosene
## 986  2018-01-07 18:08:00           Kerosene
## 987  2018-01-07 18:08:00           Kerosene
## 988  2018-01-07 18:08:00           Kerosene
## 989  2018-01-07 18:08:00           Kerosene
## 990  2018-01-07 18:08:00           Kerosene
## 991  2018-01-07 18:08:00           Kerosene
## 992  2018-01-07 18:08:00           Kerosene
## 993  2018-01-07 18:08:00           Kerosene
## 994  2018-01-07 18:08:00           Kerosene
## 995  2018-01-07 18:08:00           Kerosene
## 996  2018-01-07 18:08:00           Kerosene
## 997  2018-01-07 18:08:00           Kerosene
## 998  2018-01-07 18:08:00           Kerosene
## 999  2018-01-07 18:08:00           Kerosene
## 1000 2018-01-07 18:08:00           Kerosene
## 1001 2018-01-07 18:08:00           Kerosene
## 1002 2018-01-07 18:08:00           Kerosene
## 1003 2018-01-07 18:08:00           Kerosene
## 1004 2018-01-07 00:06:00          CleanCook
## 1005 2018-01-07 00:06:00          CleanCook
## 1006 2018-01-07 00:06:00          CleanCook
## 1007 2018-01-07 00:06:00          CleanCook
## 1008 2018-01-07 00:06:00          CleanCook
## 1009 2018-01-07 00:06:00          CleanCook
## 1010 2018-01-07 00:06:00          CleanCook
## 1011 2018-01-07 00:06:00          CleanCook
## 1012 2018-01-07 00:06:00          CleanCook
## 1013 2018-01-07 00:06:00          CleanCook
## 1014 2018-01-07 00:06:00          CleanCook
## 1015 2018-01-07 00:06:00          CleanCook
## 1016 2018-01-07 00:06:00          CleanCook
## 1017 2018-01-07 00:06:00          CleanCook
## 1018 2018-01-07 00:06:00          CleanCook
## 1019 2018-01-07 00:06:00          CleanCook
## 1020 2018-01-07 00:06:00          CleanCook
## 1021 2018-01-07 00:06:00          CleanCook
## 1022 2018-01-07 00:06:00          CleanCook
## 1023 2018-01-07 00:06:00          CleanCook
## 1024 2018-01-07 00:06:00          CleanCook
## 1025 2018-01-07 00:06:00          CleanCook
## 1026 2018-01-07 00:06:00          CleanCook
## 1027 2018-01-07 00:06:00          CleanCook
## 1028 2018-01-07 00:06:00          CleanCook
## 1029 2018-01-07 00:06:00          CleanCook
## 1030 2018-01-07 00:06:00          CleanCook
## 1031 2018-01-07 00:06:00          CleanCook
## 1032 2018-01-07 00:06:00          CleanCook
## 1033 2018-01-07 00:06:00          CleanCook
## 1034 2018-01-07 00:06:00          CleanCook
## 1035 2018-01-07 00:06:00          CleanCook
## 1036 2018-01-07 00:06:00          CleanCook
## 1037 2018-01-07 00:06:00          CleanCook
## 1038 2018-01-07 00:06:00          CleanCook
## 1039 2018-01-07 00:06:00          CleanCook
## 1040 2018-01-07 00:06:00          CleanCook
## 1041 2018-01-07 00:06:00          CleanCook
## 1042 2018-01-07 00:06:00          CleanCook
## 1043 2018-01-07 00:06:00          CleanCook
## 1044 2018-01-07 00:06:00          CleanCook
## 1045 2018-01-07 00:06:00          CleanCook
## 1046 2018-01-07 00:06:00          CleanCook
## 1047 2018-01-07 00:06:00          CleanCook
## 1048 2018-01-07 00:06:00          CleanCook
## 1049 2018-01-07 00:06:00          CleanCook
## 1050 2018-01-07 00:06:00          CleanCook
## 1051 2018-01-07 00:06:00          CleanCook
## 1052 2017-12-10 07:20:00           Kerosene
## 1053 2017-12-10 07:20:00           Kerosene
## 1054 2017-12-10 07:20:00           Kerosene
## 1055 2017-12-10 07:20:00           Kerosene
## 1056 2017-12-10 07:20:00           Kerosene
## 1057 2017-12-10 07:20:00           Kerosene
## 1058 2017-12-10 07:20:00           Kerosene
## 1059 2017-12-10 07:20:00           Kerosene
## 1060 2017-12-10 07:20:00           Kerosene
## 1061 2017-12-10 07:20:00           Kerosene
## 1062 2017-12-10 07:20:00           Kerosene
## 1063 2017-12-10 07:20:00           Kerosene
## 1064 2017-12-10 07:20:00           Kerosene
## 1065 2017-12-10 07:20:00           Kerosene
## 1066 2017-12-10 07:20:00           Kerosene
## 1067 2017-12-10 07:20:00           Kerosene
## 1068 2017-12-10 07:20:00           Kerosene
## 1069 2017-12-10 07:20:00           Kerosene
## 1070 2017-12-10 07:20:00           Kerosene
## 1071 2017-12-10 07:20:00           Kerosene
## 1072 2017-12-10 07:20:00           Kerosene
## 1073 2017-12-10 07:20:00           Kerosene
## 1074 2017-12-10 07:20:00           Kerosene
## 1075 2017-12-10 07:20:00           Kerosene
## 1076 2017-12-10 07:20:00           Kerosene
## 1077 2017-12-10 07:20:00           Kerosene
## 1078 2017-12-10 07:20:00           Kerosene
## 1079 2017-12-10 07:20:00           Kerosene
## 1080 2017-12-10 07:20:00           Kerosene
## 1081 2017-12-10 07:20:00           Kerosene
## 1082 2017-12-10 07:20:00           Kerosene
## 1083 2017-12-10 07:20:00           Kerosene
## 1084 2017-12-10 07:20:00           Kerosene
## 1085 2017-12-10 07:20:00           Kerosene
## 1086 2017-12-10 07:20:00           Kerosene
## 1087 2017-12-10 07:20:00           Kerosene
## 1088 2017-12-10 07:20:00           Kerosene
## 1089 2017-12-10 07:20:00           Kerosene
## 1090 2017-12-10 07:20:00           Kerosene
## 1091 2017-12-10 07:20:00           Kerosene
## 1092 2017-12-10 07:20:00           Kerosene
## 1093 2017-12-10 07:20:00           Kerosene
## 1094 2017-12-10 07:20:00           Kerosene
## 1095 2017-12-10 07:20:00           Kerosene
## 1096 2017-12-10 07:20:00           Kerosene
## 1097 2017-12-10 07:20:00           Kerosene
## 1098 2017-12-10 07:20:00           Kerosene
## 1099 2017-12-10 07:20:00           Kerosene
## 1100 2017-12-10 07:20:00           Kerosene
## 1101 2017-12-10 07:20:00           Kerosene
## 1102 2017-12-10 07:20:00           Kerosene
## 1103 2017-12-10 07:20:00           Kerosene
## 1104 2017-12-10 07:20:00           Kerosene
## 1105 2017-12-10 07:20:00           Kerosene
## 1106 2017-12-10 07:20:00           Kerosene
## 1107 2017-12-10 07:20:00           Kerosene
## 1108 2017-12-10 07:20:00           Kerosene
## 1109 2017-12-10 07:20:00           Kerosene
## 1110 2017-12-10 07:20:00           Kerosene
## 1111 2017-12-10 07:20:00           Kerosene
## 1112 2017-12-10 07:20:00           Kerosene
## 1113 2017-12-10 07:20:00           Kerosene
## 1114 2017-12-10 07:20:00           Kerosene
## 1115 2017-12-10 07:20:00           Kerosene
## 1116 2017-12-10 07:20:00           Kerosene
## 1117 2017-12-10 07:20:00           Kerosene
## 1118 2017-12-10 07:20:00           Kerosene
## 1119 2017-12-10 07:20:00           Kerosene
## 1120 2017-12-10 07:20:00           Kerosene
## 1121 2017-12-10 07:20:00           Kerosene
## 1122 2017-12-10 07:20:00           Kerosene
## 1123 2017-12-10 07:20:00           Kerosene
## 1124 2017-12-10 07:20:00           Kerosene
## 1125 2017-12-10 07:20:00           Kerosene
## 1126 2017-12-10 07:20:00           Kerosene
## 1127 2017-12-10 07:20:00           Kerosene
## 1128 2017-12-10 07:20:00           Kerosene
## 1129 2017-12-10 11:47:00          CleanCook
## 1130 2017-12-10 11:47:00          CleanCook
## 1131 2017-12-10 11:47:00          CleanCook
## 1132 2017-12-10 11:47:00          CleanCook
## 1133 2017-12-10 11:47:00          CleanCook
## 1134 2017-12-10 11:47:00          CleanCook
## 1135 2017-12-10 11:47:00          CleanCook
## 1136 2017-12-10 11:47:00          CleanCook
## 1137 2017-12-10 11:47:00          CleanCook
## 1138 2017-12-10 11:47:00          CleanCook
## 1139 2017-12-10 11:47:00          CleanCook
## 1140 2017-12-10 11:47:00          CleanCook
## 1141 2017-12-10 11:47:00          CleanCook
## 1142 2017-12-10 11:47:00          CleanCook
## 1143 2017-12-10 11:47:00          CleanCook
## 1144 2017-12-10 11:47:00          CleanCook
## 1145 2017-12-10 11:47:00          CleanCook
## 1146 2017-12-10 11:47:00          CleanCook
## 1147 2017-12-10 11:47:00          CleanCook
## 1148 2017-12-10 11:47:00          CleanCook
## 1149 2017-12-10 11:47:00          CleanCook
## 1150 2017-12-10 11:47:00          CleanCook
## 1151 2017-12-10 11:47:00          CleanCook
## 1152 2017-12-10 11:47:00          CleanCook
## 1153 2017-12-10 11:47:00          CleanCook
## 1154 2017-12-10 11:47:00          CleanCook
## 1155 2017-12-10 11:47:00          CleanCook
## 1156 2017-12-10 11:47:00          CleanCook
## 1157 2017-12-10 11:47:00          CleanCook
## 1158 2017-12-10 11:47:00          CleanCook
## 1159 2017-12-10 11:47:00          CleanCook
## 1160 2017-12-10 11:47:00          CleanCook
## 1161 2017-12-10 11:47:00          CleanCook
## 1162 2017-12-10 11:47:00          CleanCook
## 1163 2017-12-10 11:47:00          CleanCook
## 1164 2017-12-10 11:47:00          CleanCook
## 1165 2017-12-10 11:47:00          CleanCook
## 1166 2017-12-10 11:47:00          CleanCook
## 1167 2017-12-10 11:47:00          CleanCook
## 1168 2017-12-10 11:47:00          CleanCook
## 1169 2017-12-10 11:47:00          CleanCook
## 1170 2017-12-10 11:47:00          CleanCook
## 1171 2017-12-10 11:47:00          CleanCook
## 1172 2017-12-10 11:47:00          CleanCook
## 1173 2017-12-10 11:47:00          CleanCook
## 1174 2017-12-10 11:47:00          CleanCook
## 1175 2017-12-10 11:47:00          CleanCook
## 1176 2017-12-10 11:47:00          CleanCook
## 1177 2017-12-10 11:47:00          CleanCook
## 1178 2017-12-10 11:47:00          CleanCook
## 1179 2017-12-10 11:47:00          CleanCook
## 1180 2017-12-10 11:47:00          CleanCook
## 1181 2017-12-10 11:47:00          CleanCook
## 1182 2017-12-10 11:47:00          CleanCook
## 1183 2017-12-10 11:47:00          CleanCook
## 1184 2017-12-10 11:47:00          CleanCook
## 1185 2017-12-10 11:47:00          CleanCook
## 1186 2017-12-10 11:47:00          CleanCook
## 1187 2017-12-10 11:47:00          CleanCook
## 1188 2017-12-10 11:47:00          CleanCook
## 1189 2017-12-10 11:47:00          CleanCook
## 1190 2017-12-10 11:47:00          CleanCook
## 1191 2017-12-10 11:47:00          CleanCook
## 1192 2017-12-10 11:47:00          CleanCook
## 1193 2017-12-10 11:47:00          CleanCook
## 1194 2017-12-10 11:47:00          CleanCook
## 1195 2017-12-10 11:47:00          CleanCook
## 1196 2017-12-10 11:47:00          CleanCook
## 1197 2017-12-10 11:47:00          CleanCook
## 1198 2017-12-10 11:47:00          CleanCook
## 1199 2017-11-30 09:48:00           Kerosene
## 1200 2017-11-30 09:48:00           Kerosene
## 1201 2017-11-30 09:48:00           Kerosene
## 1202 2017-11-30 09:48:00           Kerosene
## 1203 2017-11-30 09:48:00           Kerosene
## 1204 2017-11-30 09:48:00           Kerosene
## 1205 2017-11-30 09:48:00           Kerosene
## 1206 2017-11-30 09:48:00           Kerosene
## 1207 2017-11-30 09:48:00           Kerosene
## 1208 2017-11-30 09:48:00           Kerosene
## 1209 2017-11-30 09:48:00           Kerosene
## 1210 2017-11-30 09:48:00           Kerosene
## 1211 2017-11-30 09:48:00           Kerosene
## 1212 2017-11-30 09:48:00           Kerosene
## 1213 2017-11-30 09:48:00           Kerosene
## 1214 2017-11-30 09:48:00           Kerosene
## 1215 2017-11-30 09:48:00           Kerosene
## 1216 2017-11-30 09:48:00           Kerosene
## 1217 2017-11-30 09:48:00           Kerosene
## 1218 2017-11-30 01:32:00          CleanCook
## 1219 2017-11-30 01:32:00          CleanCook
## 1220 2017-11-30 01:32:00          CleanCook
## 1221 2017-11-30 01:32:00          CleanCook
## 1222 2017-11-30 01:32:00          CleanCook
## 1223 2017-11-30 01:32:00          CleanCook
## 1224 2017-11-30 01:32:00          CleanCook
## 1225 2017-11-30 01:32:00          CleanCook
## 1226 2017-11-30 01:32:00          CleanCook
## 1227 2017-11-30 01:32:00          CleanCook
## 1228 2017-11-30 01:32:00          CleanCook
## 1229 2017-11-30 01:32:00          CleanCook
## 1230 2017-11-30 01:32:00          CleanCook
## 1231 2017-11-30 01:32:00          CleanCook
## 1232 2017-11-30 01:32:00          CleanCook
## 1233 2017-11-30 01:32:00          CleanCook
## 1234 2017-11-30 01:32:00          CleanCook
## 1235 2017-11-30 01:32:00          CleanCook
## 1236 2017-11-30 01:32:00          CleanCook
## 1237 2017-11-30 01:32:00          CleanCook
## 1238 2017-11-30 01:32:00          CleanCook
## 1239 2017-11-30 01:32:00          CleanCook
## 1240 2017-11-30 01:32:00          CleanCook
## 1241 2017-11-30 01:32:00          CleanCook
## 1242 2017-11-30 01:32:00          CleanCook
## 1243 2017-11-30 01:32:00          CleanCook
## 1244 2017-11-30 01:32:00          CleanCook
## 1245 2017-11-30 01:32:00          CleanCook
## 1246 2017-11-30 01:32:00          CleanCook
## 1247 2017-11-30 01:32:00          CleanCook
## 1248 2017-11-30 01:32:00          CleanCook
## 1249 2017-11-30 01:32:00          CleanCook
## 1250 2017-11-30 01:32:00          CleanCook
## 1251 2017-11-30 01:32:00          CleanCook
## 1252 2017-11-30 01:32:00          CleanCook
## 1253 2017-11-30 01:32:00          CleanCook
## 1254 2017-02-12 00:42:00          CleanCook
## 1255 2017-02-12 00:42:00          CleanCook
## 1256 2017-02-12 00:42:00          CleanCook
## 1257 2017-02-12 00:42:00          CleanCook
## 1258 2017-02-12 00:42:00          CleanCook
## 1259 2017-02-12 00:42:00          CleanCook
## 1260 2017-02-12 00:42:00          CleanCook
## 1261 2017-02-12 00:42:00          CleanCook
## 1262 2017-02-12 00:42:00          CleanCook
## 1263 2017-02-12 00:42:00          CleanCook
## 1264 2017-02-12 00:42:00          CleanCook
## 1265 2017-02-12 00:42:00          CleanCook
## 1266 2017-02-12 00:42:00          CleanCook
## 1267 2017-02-12 00:42:00          CleanCook
## 1268 2017-02-12 00:42:00          CleanCook
## 1269 2017-02-12 00:42:00          CleanCook
## 1270 2017-02-12 00:42:00          CleanCook
## 1271 2017-02-12 00:42:00          CleanCook
## 1272 2017-02-12 00:42:00          CleanCook
## 1273 2017-02-12 00:42:00          CleanCook
## 1274 2017-02-12 00:42:00          CleanCook
## 1275 2017-02-12 00:42:00          CleanCook
## 1276 2017-02-12 00:42:00          CleanCook
## 1277 2017-02-12 00:42:00          CleanCook
## 1278 2017-02-12 00:42:00          CleanCook
## 1279 2017-02-12 00:42:00          CleanCook
## 1280 2017-02-12 00:42:00          CleanCook
## 1281 2017-02-12 00:42:00          CleanCook
## 1282 2017-02-12 00:42:00          CleanCook
## 1283 2017-02-12 00:42:00          CleanCook
## 1284 2017-02-12 00:42:00          CleanCook
## 1285 2017-02-12 00:42:00          CleanCook
## 1286 2017-02-12 00:42:00          CleanCook
## 1287 2017-02-12 00:42:00          CleanCook
## 1288 2017-02-12 00:42:00          CleanCook
## 1289 2017-02-12 00:42:00          CleanCook
## 1290 2017-02-12 00:42:00          CleanCook
## 1291 2017-02-12 00:42:00          CleanCook
## 1292 2017-02-12 00:42:00          CleanCook
## 1293 2017-02-12 00:42:00          CleanCook
## 1294 2017-02-12 00:42:00          CleanCook
## 1295 2017-02-12 00:42:00          CleanCook
## 1296 2017-02-12 00:42:00          CleanCook
## 1297 2017-02-12 00:42:00          CleanCook
## 1298 2017-02-12 00:42:00          CleanCook
## 1299 2017-02-12 00:42:00          CleanCook
## 1300 2017-02-12 00:42:00          CleanCook
## 1301 2017-02-12 00:42:00          CleanCook
## 1302 2017-02-12 00:42:00          CleanCook
## 1303 2017-02-12 00:42:00          CleanCook
## 1304 2017-02-12 00:42:00          CleanCook
## 1305 2017-02-12 00:42:00          CleanCook
## 1306 2017-02-12 00:42:00          CleanCook
## 1307 2017-02-12 00:42:00          CleanCook
## 1308 2017-02-12 00:42:00          CleanCook
## 1309 2017-02-12 00:42:00          CleanCook
## 1310 2017-02-12 00:42:00          CleanCook
## 1311 2017-02-12 00:42:00          CleanCook
## 1312 2017-02-12 00:42:00          CleanCook
## 1313 2017-02-12 00:42:00          CleanCook
## 1314 2017-02-12 00:42:00          CleanCook
## 1315 2017-02-12 00:42:00          CleanCook
## 1316 2017-02-12 00:42:00          CleanCook
## 1317 2017-02-12 00:42:00          CleanCook
## 1318 2017-02-12 00:42:00          CleanCook
## 1319 2017-02-12 00:42:00          CleanCook
## 1320 2017-02-12 00:42:00          CleanCook
## 1321 2017-02-12 00:42:00          CleanCook
## 1322 2017-02-12 00:42:00          CleanCook
## 1323 2017-02-12 00:42:00          CleanCook
## 1324 2017-02-12 00:42:00          CleanCook
## 1325 2017-02-12 00:42:00          CleanCook
## 1326 2017-02-12 00:42:00          CleanCook
## 1327 2017-02-12 00:42:00          CleanCook
## 1328 2017-02-12 00:42:00          CleanCook
## 1329 2017-02-12 00:42:00          CleanCook
## 1330 2017-02-12 00:42:00          CleanCook
## 1331 2017-02-12 00:42:00          CleanCook
## 1332 2017-02-12 00:42:00          CleanCook
## 1333 2017-02-12 00:42:00          CleanCook
## 1334 2017-02-12 00:42:00          CleanCook
## 1335 2017-02-12 00:42:00          CleanCook
## 1336 2017-02-12 00:42:00          CleanCook
## 1337 2017-02-12 00:42:00          CleanCook
## 1338 2017-02-12 00:42:00          CleanCook
## 1339 2017-02-12 00:42:00          CleanCook
## 1340 2017-02-12 00:42:00          CleanCook
## 1341 2017-02-12 00:42:00          CleanCook
## 1342 2017-02-12 00:42:00          CleanCook
## 1343 2017-02-12 00:42:00          CleanCook
## 1344 2017-02-12 00:42:00          CleanCook
## 1345 2017-02-12 00:42:00          CleanCook
## 1346 2017-02-12 00:42:00          CleanCook
## 1347 2017-02-12 00:42:00          CleanCook
## 1348 2017-02-12 00:42:00          CleanCook
## 1349 2017-02-12 00:42:00          CleanCook
## 1350 2017-02-12 00:42:00          CleanCook
## 1351 2017-02-12 00:42:00          CleanCook
## 1352 2017-02-12 00:42:00          CleanCook
## 1353 2017-02-12 00:42:00          CleanCook
## 1354 2017-02-12 00:42:00          CleanCook
## 1355 2017-02-12 00:42:00          CleanCook
## 1356 2017-02-12 00:42:00          CleanCook
## 1357 2017-02-12 00:42:00          CleanCook
## 1358 2017-02-12 00:42:00          CleanCook
## 1359 2017-02-12 00:42:00          CleanCook
## 1360 2017-02-12 00:42:00          CleanCook
## 1361 2017-02-12 00:42:00          CleanCook
## 1362 2017-02-12 00:42:00          CleanCook
## 1363 2017-02-12 00:42:00          CleanCook
## 1364 2017-02-12 00:42:00          CleanCook
## 1365 2017-02-12 00:42:00          CleanCook
## 1366 2017-02-12 00:42:00          CleanCook
## 1367 2017-02-12 00:42:00          CleanCook
## 1368 2017-02-12 00:42:00          CleanCook
## 1369 2017-02-12 00:42:00          CleanCook
## 1370 2017-02-12 00:42:00          CleanCook
## 1371 2017-02-12 00:42:00          CleanCook
## 1372 2017-02-12 00:42:00          CleanCook
## 1373 2017-02-12 00:42:00          CleanCook
## 1374 2017-02-12 10:38:00           Kerosene
## 1375 2017-02-12 10:38:00           Kerosene
## 1376 2017-02-12 10:38:00           Kerosene
## 1377 2017-02-12 10:38:00           Kerosene
## 1378 2017-02-12 10:38:00           Kerosene
## 1379 2017-02-12 10:38:00           Kerosene
## 1380 2017-02-12 10:38:00           Kerosene
## 1381 2017-02-12 10:38:00           Kerosene
## 1382 2017-02-12 10:38:00           Kerosene
## 1383 2017-02-12 10:38:00           Kerosene
## 1384 2017-02-12 10:38:00           Kerosene
## 1385 2017-02-12 10:38:00           Kerosene
## 1386 2017-02-12 10:38:00           Kerosene
## 1387 2017-02-12 10:38:00           Kerosene
## 1388 2017-02-12 10:38:00           Kerosene
## 1389 2017-02-12 10:38:00           Kerosene
## 1390 2017-02-12 10:38:00           Kerosene
## 1391 2017-02-12 10:38:00           Kerosene
## 1392 2017-02-12 10:38:00           Kerosene
## 1393 2017-02-12 10:38:00           Kerosene
## 1394 2017-02-12 10:38:00           Kerosene
## 1395 2017-02-12 10:38:00           Kerosene
## 1396 2017-02-12 10:38:00           Kerosene
## 1397 2017-02-12 10:38:00           Kerosene
## 1398 2017-02-12 10:38:00           Kerosene
## 1399 2017-02-12 10:38:00           Kerosene
## 1400 2017-02-12 10:38:00           Kerosene
## 1401 2017-02-12 10:38:00           Kerosene
## 1402 2017-02-12 10:38:00           Kerosene
## 1403 2017-02-12 10:38:00           Kerosene
## 1404 2017-02-12 10:38:00           Kerosene
## 1405 2017-02-12 10:38:00           Kerosene
## 1406 2017-02-12 10:38:00           Kerosene
## 1407 2017-02-12 10:38:00           Kerosene
## 1408 2017-02-12 10:38:00           Kerosene
## 1409 2017-02-12 10:38:00           Kerosene
## 1410 2017-02-12 10:38:00           Kerosene
## 1411 2017-02-12 10:38:00           Kerosene
## 1412 2017-02-12 10:38:00           Kerosene
## 1413 2017-02-12 10:38:00           Kerosene
## 1414 2017-02-12 10:38:00           Kerosene
## 1415 2017-02-12 10:38:00           Kerosene
## 1416 2017-02-12 10:38:00           Kerosene
## 1417 2017-02-12 10:38:00           Kerosene
## 1418 2017-02-12 10:38:00           Kerosene
## 1419 2017-02-12 10:38:00           Kerosene
## 1420 2017-02-12 10:38:00           Kerosene
## 1421 2017-02-12 10:38:00           Kerosene
## 1422 2017-02-12 10:38:00           Kerosene
## 1423 2017-02-12 10:38:00           Kerosene
## 1424 2017-02-12 10:38:00           Kerosene
## 1425 2017-02-12 10:38:00           Kerosene
## 1426 2017-02-12 10:38:00           Kerosene
## 1427 2017-02-12 10:38:00           Kerosene
## 1428 2017-02-12 10:38:00           Kerosene
## 1429 2017-02-12 10:38:00           Kerosene
## 1430 2017-02-12 10:38:00           Kerosene
## 1431 2017-02-12 10:38:00           Kerosene
## 1432 2017-02-12 10:38:00           Kerosene
## 1433 2017-02-12 10:38:00           Kerosene
## 1434 2017-02-12 10:38:00           Kerosene
## 1435 2017-02-12 10:38:00           Kerosene
## 1436 2017-02-12 10:38:00           Kerosene
## 1437 2017-11-15 01:26:00          CleanCook
## 1438 2017-11-15 01:26:00          CleanCook
## 1439 2017-11-15 01:26:00          CleanCook
## 1440 2017-11-15 01:26:00          CleanCook
## 1441 2017-11-15 01:26:00          CleanCook
## 1442 2017-11-15 01:26:00          CleanCook
## 1443 2017-11-15 01:26:00          CleanCook
## 1444 2017-11-15 01:26:00          CleanCook
## 1445 2017-11-15 01:26:00          CleanCook
## 1446 2017-11-15 01:26:00          CleanCook
## 1447 2017-11-15 01:26:00          CleanCook
## 1448 2017-11-15 01:26:00          CleanCook
## 1449 2017-11-15 01:26:00          CleanCook
## 1450 2017-11-15 01:26:00          CleanCook
## 1451 2017-11-15 01:26:00          CleanCook
## 1452 2017-11-15 01:26:00          CleanCook
## 1453 2017-11-15 01:26:00          CleanCook
## 1454 2017-11-15 01:26:00          CleanCook
## 1455 2017-11-15 01:26:00          CleanCook
## 1456 2017-11-15 01:26:00          CleanCook
## 1457 2017-11-15 01:26:00          CleanCook
## 1458 2017-11-15 01:26:00          CleanCook
## 1459 2017-11-15 01:26:00          CleanCook
## 1460 2017-11-15 01:26:00          CleanCook
## 1461 2017-11-15 01:26:00          CleanCook
## 1462 2017-11-15 01:26:00          CleanCook
## 1463 2017-11-15 01:26:00          CleanCook
## 1464 2017-11-15 01:26:00          CleanCook
## 1465 2017-11-15 01:26:00          CleanCook
## 1466 2017-11-15 01:26:00          CleanCook
## 1467 2017-11-15 01:26:00          CleanCook
## 1468 2017-11-15 01:26:00          CleanCook
## 1469 2017-11-15 01:26:00          CleanCook
## 1470 2017-11-15 01:26:00          CleanCook
## 1471 2017-11-15 01:26:00          CleanCook
## 1472 2017-11-15 01:26:00          CleanCook
## 1473 2017-11-15 01:26:00          CleanCook
## 1474 2017-11-15 01:26:00          CleanCook
## 1475 2017-11-15 01:26:00          CleanCook
## 1476 2017-11-15 01:26:00          CleanCook
## 1477 2017-11-15 09:52:00           Kerosene
## 1478 2017-11-15 09:52:00           Kerosene
## 1479 2017-11-15 09:52:00           Kerosene
## 1480 2017-11-15 09:52:00           Kerosene
## 1481 2017-11-15 09:52:00           Kerosene
## 1482 2017-11-15 09:52:00           Kerosene
## 1483 2017-11-15 09:52:00           Kerosene
## 1484 2017-11-15 09:52:00           Kerosene
## 1485 2017-11-15 09:52:00           Kerosene
## 1486 2017-11-15 09:52:00           Kerosene
## 1487 2017-11-15 09:52:00           Kerosene
## 1488 2017-11-15 09:52:00           Kerosene
## 1489 2017-10-15 00:07:00            Ambient
## 1490 2017-10-15 11:27:00           Kerosene
## 1491 2017-10-15 11:27:00           Kerosene
## 1492 2017-10-15 11:27:00           Kerosene
## 1493 2017-10-15 11:27:00           Kerosene
## 1494 2017-10-15 11:27:00           Kerosene
## 1495 2017-10-15 11:27:00           Kerosene
## 1496 2017-10-15 11:27:00           Kerosene
## 1497 2017-10-15 11:27:00           Kerosene
## 1498 2017-10-15 11:27:00           Kerosene
## 1499 2017-10-15 11:27:00           Kerosene
## 1500 2017-10-15 11:27:00           Kerosene
## 1501 2017-10-15 11:27:00           Kerosene
## 1502 2017-10-15 11:27:00           Kerosene
## 1503 2017-10-15 11:27:00           Kerosene
## 1504 2017-10-15 11:27:00           Kerosene
## 1505 2017-10-15 11:27:00           Kerosene
## 1506 2017-10-15 11:27:00           Kerosene
## 1507 2017-10-15 11:27:00           Kerosene
## 1508 2017-10-15 11:27:00           Kerosene
## 1509 2017-10-15 11:27:00           Kerosene
## 1510 2017-10-15 11:27:00           Kerosene
## 1511 2017-10-15 11:27:00           Kerosene
## 1512 2017-10-15 11:27:00           Kerosene
## 1513 2017-10-15 11:27:00           Kerosene
## 1514 2017-10-15 11:27:00           Kerosene
## 1515 2017-10-15 11:27:00           Kerosene
## 1516 2017-10-17 16:39:00          CleanCook
## 1517 2017-10-17 16:39:00          CleanCook
## 1518 2017-10-17 16:39:00          CleanCook
## 1519 2017-10-17 16:39:00          CleanCook
## 1520 2017-10-17 16:39:00          CleanCook
## 1521 2017-10-17 16:39:00          CleanCook
## 1522 2017-10-17 16:39:00          CleanCook
## 1523 2017-10-17 16:39:00          CleanCook
## 1524 2017-10-17 16:39:00          CleanCook
## 1525 2017-10-17 16:39:00          CleanCook
## 1526 2017-10-17 16:39:00          CleanCook
## 1527 2017-10-17 16:39:00          CleanCook
## 1528 2017-10-17 16:39:00          CleanCook
## 1529 2017-10-17 16:39:00          CleanCook
## 1530 2017-10-17 16:39:00          CleanCook
## 1531 2017-10-17 16:39:00          CleanCook
## 1532 2017-10-15 05:53:00                LPG
## 1533 2017-10-15 05:53:00                LPG
## 1534 2017-10-15 05:53:00                LPG
## 1535 2017-10-15 05:53:00                LPG
## 1536 2017-10-15 05:53:00                LPG
## 1537 2017-10-15 05:53:00                LPG
## 1538 2017-10-10 11:52:00           Kerosene
## 1539 2017-10-10 11:52:00           Kerosene
## 1540 2017-10-10 11:52:00           Kerosene
## 1541 2017-10-10 11:52:00           Kerosene
## 1542 2017-10-10 11:52:00           Kerosene
## 1543 2017-10-10 12:34:00                LPG
## 1544 2017-10-10 12:34:00                LPG
## 1545 2017-10-10 12:34:00                LPG
## 1546 2017-10-10 12:34:00                LPG
## 1547 2017-10-10 12:34:00                LPG
## 1548 2017-10-10 12:34:00                LPG
## 1549 2017-10-10 12:34:00                LPG
## 1550 2017-10-10 12:34:00                LPG
## 1551 2017-10-10 12:34:00                LPG
## 1552 2017-10-10 12:34:00                LPG
## 1553 2017-10-10 12:34:00                LPG
## 1554 2017-10-10 12:34:00                LPG
## 1555 2017-10-10 12:34:00                LPG
## 1556 2017-10-09 08:37:00          CleanCook
## 1557 2017-10-09 08:37:00          CleanCook
## 1558 2017-10-09 08:37:00          CleanCook
## 1559 2017-10-09 08:37:00          CleanCook
## 1560 2017-10-09 08:37:00          CleanCook
## 1561 2017-10-09 08:37:00          CleanCook
## 1562 2017-10-09 08:37:00          CleanCook
## 1563 2017-10-09 08:37:00          CleanCook
## 1564 2017-10-09 08:37:00          CleanCook
## 1565 2017-10-09 08:37:00          CleanCook
## 1566 2017-10-09 08:37:00          CleanCook
## 1567 2017-10-09 08:37:00          CleanCook
## 1568 2017-10-09 08:37:00          CleanCook
## 1569 2018-01-21 10:39:00           Kerosene
## 1570 2018-01-21 10:39:00           Kerosene
## 1571 2018-01-21 10:39:00           Kerosene
## 1572 2018-01-21 10:39:00           Kerosene
## 1573 2018-01-21 10:39:00           Kerosene
## 1574 2018-01-21 10:39:00           Kerosene
## 1575 2018-01-21 10:39:00           Kerosene
## 1576 2018-01-21 10:39:00           Kerosene
## 1577 2018-01-21 10:39:00           Kerosene
## 1578 2018-01-21 10:39:00           Kerosene
## 1579 2018-01-21 10:39:00           Kerosene
## 1580 2018-01-21 10:39:00           Kerosene
## 1581 2018-01-21 10:39:00           Kerosene
## 1582 2018-01-21 10:39:00           Kerosene
## 1583 2018-01-21 10:39:00           Kerosene
## 1584 2018-01-21 10:39:00           Kerosene
## 1585 2018-01-21 10:39:00           Kerosene
## 1586 2018-01-21 10:39:00           Kerosene
## 1587 2018-01-21 10:39:00           Kerosene
## 1588 2018-01-21 10:39:00           Kerosene
## 1589 2018-01-21 10:39:00           Kerosene
## 1590 2018-01-21 10:39:00           Kerosene
## 1591 2018-01-21 10:39:00           Kerosene
## 1592 2018-01-21 10:39:00           Kerosene
## 1593 2018-01-21 08:47:00          CleanCook
## 1594 2018-01-21 08:47:00          CleanCook
## 1595 2018-01-21 08:47:00          CleanCook
## 1596 2018-01-21 08:47:00          CleanCook
## 1597 2018-01-21 08:47:00          CleanCook
## 1598 2018-01-21 08:47:00          CleanCook
## 1599 2018-01-21 08:47:00          CleanCook
## 1600 2018-01-21 08:47:00          CleanCook
## 1601 2018-01-21 08:47:00          CleanCook
## 1602 2018-01-21 08:47:00          CleanCook
## 1603 2018-01-21 08:47:00          CleanCook
## 1604 2018-01-21 08:47:00          CleanCook
## 1605 2018-01-21 08:47:00          CleanCook
## 1606 2018-01-21 08:47:00          CleanCook
## 1607 2018-01-21 08:47:00          CleanCook
## 1608 2018-01-21 08:47:00          CleanCook
## 1609 2018-01-21 08:47:00          CleanCook
## 1610 2018-01-21 08:47:00          CleanCook
## 1611 2018-01-21 08:47:00          CleanCook
## 1612 2018-01-21 08:47:00          CleanCook
## 1613 2018-01-21 08:47:00          CleanCook
## 1614 2018-01-21 08:47:00          CleanCook
## 1615 2018-01-21 08:47:00          CleanCook
## 1616 2018-01-21 08:47:00          CleanCook
## 1617 2018-01-21 08:47:00          CleanCook
## 1618 2018-01-21 08:47:00          CleanCook
## 1619 2018-01-21 08:47:00          CleanCook
## 1620 2018-01-21 08:47:00          CleanCook
## 1621 2018-01-21 08:47:00          CleanCook
## 1622 2018-01-21 08:47:00          CleanCook
## 1623 2018-01-21 08:47:00          CleanCook
## 1624 2018-01-21 08:47:00          CleanCook
## 1625 2018-01-21 08:47:00          CleanCook
## 1626 2018-01-21 08:47:00          CleanCook
## 1627 2018-01-21 08:47:00          CleanCook
## 1628 2018-01-21 08:47:00          CleanCook
## 1629 2018-01-21 08:47:00          CleanCook
## 1630 2018-01-21 08:47:00          CleanCook
## 1631 2018-01-21 08:47:00          CleanCook
## 1632 2018-01-21 08:47:00          CleanCook
## 1633 2018-01-21 08:47:00          CleanCook
## 1634 2018-01-21 08:47:00          CleanCook
## 1635 2018-01-21 08:47:00          CleanCook
## 1636 2018-01-21 08:47:00          CleanCook
## 1637 2017-12-08 08:12:00          CleanCook
## 1638 2017-12-08 08:12:00          CleanCook
## 1639 2017-02-12 03:54:00                LPG
## 1640 2017-02-12 03:54:00                LPG
## 1641 2017-02-12 03:54:00                LPG
## 1642 2017-02-12 03:54:00                LPG
## 1643 2017-02-12 03:54:00                LPG
## 1644 2017-02-12 03:54:00                LPG
## 1645 2017-02-12 03:54:00                LPG
## 1646 2017-02-12 03:54:00                LPG
## 1647 2017-02-12 03:54:00                LPG
## 1648 2017-02-12 03:54:00                LPG
## 1649 2017-02-12 03:54:00                LPG
## 1650 2017-02-12 03:54:00                LPG
## 1651 2017-02-12 03:54:00                LPG
## 1652 2017-02-12 03:54:00                LPG
## 1653 2017-02-12 03:54:00                LPG
## 1654 2017-02-12 03:54:00                LPG
## 1655 2017-02-12 03:54:00                LPG
## 1656 2017-02-12 03:54:00                LPG
## 1657 2017-02-12 03:54:00                LPG
## 1658 2017-02-12 03:54:00                LPG
## 1659 2017-02-12 03:54:00                LPG
## 1660 2017-02-12 03:54:00                LPG
## 1661 2017-02-12 03:54:00                LPG
## 1662 2017-02-12 03:54:00                LPG
## 1663 2017-02-12 03:54:00                LPG
## 1664 2017-02-12 03:54:00                LPG
## 1665 2017-02-12 03:54:00                LPG
## 1666 2017-02-12 03:54:00                LPG
## 1667 2017-02-12 03:54:00                LPG
## 1668 2017-02-12 03:54:00                LPG
## 1669 2017-02-12 03:54:00                LPG
## 1670 2017-02-12 03:54:00                LPG
## 1671 2017-02-12 03:54:00                LPG
## 1672 2017-02-12 03:54:00                LPG
## 1673 2017-02-12 03:54:00                LPG
## 1674 2017-02-12 03:54:00                LPG
## 1675 2017-02-12 03:54:00                LPG
## 1676 2017-02-12 03:54:00                LPG
## 1677 2017-02-12 03:54:00                LPG
## 1678 2017-02-12 03:54:00                LPG
## 1679 2017-02-12 03:54:00                LPG
## 1680 2017-02-12 03:54:00                LPG
## 1681 2017-02-12 03:54:00                LPG
## 1682 2017-02-12 03:54:00                LPG
## 1683 2017-02-12 03:54:00                LPG
## 1684 2017-02-12 03:54:00                LPG
## 1685 2017-02-12 03:54:00                LPG
## 1686 2017-02-12 03:54:00                LPG
## 1687 2017-02-12 03:54:00                LPG
## 1688 2017-02-12 03:54:00                LPG
## 1689 2017-02-12 03:54:00                LPG
## 1690 2017-02-12 03:54:00                LPG
## 1691 2017-02-12 03:54:00                LPG
## 1692 2017-02-12 03:54:00                LPG
## 1693 2017-02-12 03:54:00                LPG
## 1694 2017-02-12 03:54:00                LPG
## 1695 2017-02-12 03:54:00                LPG
## 1696 2017-02-12 03:54:00                LPG
## 1697 2017-02-12 03:54:00                LPG
## 1698 2017-02-12 03:54:00                LPG
## 1699 2017-02-12 03:54:00                LPG
## 1700 2017-02-12 03:54:00                LPG
## 1701 2017-02-12 03:54:00                LPG
## 1702 2017-02-12 03:54:00                LPG
## 1703 2017-02-12 03:54:00                LPG
## 1704 2017-02-12 03:54:00                LPG
## 1705 2017-02-12 03:54:00                LPG
## 1706 2017-02-12 03:54:00                LPG
## 1707 2017-02-12 03:54:00                LPG
## 1708 2017-02-12 03:54:00                LPG
## 1709 2017-02-12 03:54:00                LPG
## 1710 2017-02-12 03:54:00                LPG
## 1711 2017-02-12 03:54:00                LPG
## 1712 2017-02-12 03:54:00                LPG
## 1713 2017-02-12 03:54:00                LPG
## 1714 2017-02-12 03:54:00                LPG
## 1715 2017-02-12 03:54:00                LPG
## 1716 2017-02-12 03:54:00                LPG
## 1717 2017-02-12 03:54:00                LPG
## 1718 2017-02-12 03:54:00                LPG
## 1719 2017-02-12 03:54:00                LPG
## 1720 2017-02-12 03:54:00                LPG
## 1721 2017-02-12 03:54:00                LPG
## 1722 2017-02-12 03:54:00                LPG
## 1723 2017-02-12 03:54:00                LPG
## 1724 2017-02-12 03:54:00                LPG
## 1725 2017-02-12 03:54:00                LPG
## 1726 2017-02-12 03:54:00                LPG
## 1727 2017-02-12 03:54:00                LPG
## 1728 2017-02-12 03:54:00                LPG
## 1729 2017-02-12 03:54:00                LPG
## 1730 2017-02-12 03:54:00                LPG
## 1731 2017-02-12 03:54:00                LPG
## 1732 2017-02-12 03:54:00                LPG
## 1733 2017-02-12 03:54:00                LPG
## 1734 2017-02-12 03:54:00                LPG
## 1735 2017-02-12 03:54:00                LPG
## 1736 2017-02-12 03:54:00                LPG
## 1737 2017-02-12 03:54:00                LPG
## 1738 2017-02-12 03:54:00                LPG
## 1739 2017-02-12 03:54:00                LPG
## 1740 2017-02-12 03:54:00                LPG
## 1741 2017-02-12 03:54:00                LPG
## 1742 2017-02-12 03:54:00                LPG
## 1743 2017-02-12 03:54:00                LPG
## 1744 2017-02-12 03:54:00                LPG
## 1745 2017-02-12 03:54:00                LPG
## 1746 2017-02-12 03:54:00                LPG
## 1747 2017-02-12 03:54:00                LPG
## 1748 2017-02-12 03:54:00                LPG
## 1749 2017-02-12 03:54:00                LPG
## 1750 2017-02-12 03:54:00                LPG
## 1751 2017-02-12 03:54:00                LPG
## 1752 2017-02-12 03:54:00                LPG
## 1753 2017-02-12 03:54:00                LPG
## 1754 2017-02-12 03:54:00                LPG
## 1755 2017-02-12 03:54:00                LPG
## 1756 2017-02-12 01:52:00          CleanCook
## 1757 2017-02-12 01:52:00          CleanCook
## 1758 2017-02-12 01:52:00          CleanCook
## 1759 2017-02-12 01:52:00          CleanCook
## 1760 2017-02-12 01:52:00          CleanCook
## 1761 2017-02-12 01:52:00          CleanCook
## 1762 2017-02-12 01:52:00          CleanCook
## 1763 2017-02-12 01:52:00          CleanCook
## 1764 2017-02-12 01:52:00          CleanCook
## 1765 2017-02-12 01:52:00          CleanCook
## 1766 2017-02-12 01:52:00          CleanCook
## 1767 2017-02-12 01:52:00          CleanCook
## 1768 2017-02-12 01:52:00          CleanCook
## 1769 2017-02-12 01:52:00          CleanCook
## 1770 2017-02-12 01:52:00          CleanCook
## 1771 2017-02-12 01:52:00          CleanCook
## 1772 2017-02-12 01:52:00          CleanCook
## 1773 2017-02-12 01:52:00          CleanCook
## 1774 2017-02-12 01:52:00          CleanCook
## 1775 2017-02-12 01:52:00          CleanCook
## 1776 2017-02-12 01:52:00          CleanCook
## 1777 2017-02-12 01:52:00          CleanCook
## 1778 2017-02-12 01:52:00          CleanCook
## 1779 2017-02-12 01:52:00          CleanCook
## 1780 2017-02-12 01:52:00          CleanCook
## 1781 2017-02-12 01:52:00          CleanCook
## 1782 2017-02-12 01:52:00          CleanCook
## 1783 2017-02-12 01:52:00          CleanCook
## 1784 2017-02-12 01:52:00          CleanCook
## 1785 2017-02-12 01:52:00          CleanCook
## 1786 2017-02-12 01:52:00          CleanCook
## 1787 2017-02-12 01:52:00          CleanCook
## 1788 2017-02-12 01:52:00          CleanCook
## 1789 2017-02-12 01:52:00          CleanCook
## 1790 2017-02-12 01:52:00          CleanCook
## 1791 2017-02-12 01:52:00          CleanCook
## 1792 2017-02-12 01:52:00          CleanCook
## 1793 2017-02-12 01:52:00          CleanCook
## 1794 2017-02-12 01:52:00          CleanCook
## 1795 2017-02-12 01:52:00          CleanCook
## 1796 2017-02-12 01:52:00          CleanCook
## 1797 2017-02-12 01:52:00          CleanCook
## 1798 2017-02-12 01:52:00          CleanCook
## 1799 2017-02-12 01:52:00          CleanCook
## 1800 2017-02-12 01:52:00          CleanCook
## 1801 2017-02-12 01:52:00          CleanCook
## 1802 2017-02-12 01:52:00          CleanCook
## 1803 2017-02-12 01:52:00          CleanCook
## 1804 2017-02-12 01:52:00          CleanCook
## 1805 2017-02-12 01:52:00          CleanCook
## 1806 2017-02-12 01:52:00          CleanCook
## 1807 2017-02-12 01:52:00          CleanCook
## 1808 2017-02-12 01:52:00          CleanCook
## 1809 2017-02-12 01:52:00          CleanCook
## 1810 2017-02-12 01:52:00          CleanCook
## 1811 2017-02-12 01:52:00          CleanCook
## 1812 2017-02-12 01:52:00          CleanCook
## 1813 2017-02-12 01:52:00          CleanCook
## 1814 2017-02-12 01:52:00          CleanCook
## 1815 2017-02-12 01:52:00          CleanCook
## 1816 2017-02-12 01:52:00          CleanCook
## 1817 2017-02-12 01:52:00          CleanCook
## 1818 2017-02-12 01:52:00          CleanCook
## 1819 2017-02-12 01:52:00          CleanCook
## 1820 2017-02-12 01:52:00          CleanCook
## 1821 2017-02-12 01:52:00          CleanCook
## 1822 2017-02-12 01:52:00          CleanCook
## 1823 2017-02-12 01:52:00          CleanCook
## 1824 2017-02-12 01:52:00          CleanCook
## 1825 2017-02-12 01:52:00          CleanCook
## 1826 2017-02-12 01:52:00          CleanCook
## 1827 2017-02-12 01:52:00          CleanCook
## 1828 2017-02-12 01:52:00          CleanCook
## 1829 2017-02-12 01:52:00          CleanCook
## 1830 2017-02-12 01:52:00          CleanCook
## 1831 2017-02-12 01:52:00          CleanCook
## 1832 2017-02-12 01:52:00          CleanCook
## 1833 2017-02-12 01:52:00          CleanCook
## 1834 2017-02-12 01:52:00          CleanCook
## 1835 2017-02-12 01:52:00          CleanCook
## 1836 2017-02-12 01:52:00          CleanCook
## 1837 2017-02-12 01:52:00          CleanCook
## 1838 2017-02-12 01:52:00          CleanCook
## 1839 2017-02-12 01:52:00          CleanCook
## 1840 2017-02-12 01:52:00          CleanCook
## 1841 2017-02-12 01:52:00          CleanCook
## 1842 2017-02-12 01:52:00          CleanCook
## 1843 2017-02-12 01:52:00          CleanCook
## 1844 2017-02-12 01:52:00          CleanCook
## 1845 2017-02-12 01:52:00          CleanCook
## 1846 2017-02-12 01:52:00          CleanCook
## 1847 2017-02-12 01:52:00          CleanCook
## 1848 2017-02-12 01:52:00          CleanCook
## 1849 2017-02-12 01:52:00          CleanCook
## 1850 2017-02-12 01:52:00          CleanCook
## 1851 2017-02-12 01:52:00          CleanCook
## 1852 2017-02-12 01:52:00          CleanCook
## 1853 2017-02-12 01:52:00          CleanCook
## 1854 2017-02-12 01:52:00          CleanCook
## 1855 2017-02-12 01:52:00          CleanCook
## 1856 2017-02-12 01:52:00          CleanCook
## 1857 2017-02-12 02:36:00           Kerosene
## 1858 2017-02-12 02:36:00           Kerosene
## 1859 2017-02-12 02:36:00           Kerosene
## 1860 2017-02-12 02:36:00           Kerosene
## 1861 2017-02-12 02:36:00           Kerosene
## 1862 2017-02-12 02:36:00           Kerosene
## 1863 2017-02-12 02:36:00           Kerosene
## 1864 2017-02-12 02:36:00           Kerosene
## 1865 2017-02-12 02:36:00           Kerosene
## 1866 2017-02-12 02:36:00           Kerosene
## 1867 2017-02-12 02:36:00           Kerosene
## 1868 2017-02-12 02:36:00           Kerosene
## 1869 2017-02-12 02:36:00           Kerosene
## 1870 2017-02-12 02:36:00           Kerosene
## 1871 2017-02-12 02:36:00           Kerosene
## 1872 2017-02-12 02:36:00           Kerosene
## 1873 2017-02-12 02:36:00           Kerosene
## 1874 2017-02-12 02:36:00           Kerosene
## 1875 2017-02-12 02:36:00           Kerosene
## 1876 2017-02-12 02:36:00           Kerosene
## 1877 2017-02-12 02:36:00           Kerosene
## 1878 2017-02-12 02:36:00           Kerosene
## 1879 2017-02-12 02:36:00           Kerosene
## 1880 2017-02-12 02:36:00           Kerosene
## 1881 2017-02-12 02:36:00           Kerosene
## 1882 2017-02-12 02:36:00           Kerosene
## 1883 2017-02-12 02:36:00           Kerosene
## 1884 2017-02-12 02:36:00           Kerosene
## 1885 2017-02-12 02:36:00           Kerosene
## 1886 2017-02-12 02:36:00           Kerosene
## 1887 2017-02-12 02:36:00           Kerosene
## 1888 2017-02-12 02:36:00           Kerosene
## 1889 2017-02-12 02:36:00           Kerosene
## 1890 2017-02-12 02:36:00           Kerosene
## 1891 2017-02-12 02:36:00           Kerosene
## 1892 2017-02-12 02:36:00           Kerosene
## 1893 2017-02-12 02:36:00           Kerosene
## 1894 2017-02-12 02:36:00           Kerosene
## 1895 2017-02-12 02:36:00           Kerosene
## 1896 2017-02-12 02:36:00           Kerosene
## 1897 2017-02-12 02:36:00           Kerosene
## 1898 2017-02-12 02:36:00           Kerosene
## 1899 2017-02-12 02:36:00           Kerosene
## 1900 2017-02-12 02:36:00           Kerosene
## 1901 2017-02-12 02:36:00           Kerosene
## 1902 2017-02-12 02:36:00           Kerosene
## 1903 2017-02-12 02:36:00           Kerosene
## 1904 2017-02-12 02:36:00           Kerosene
## 1905 2017-02-12 02:36:00           Kerosene
## 1906 2017-02-12 02:36:00           Kerosene
## 1907 2017-02-12 02:36:00           Kerosene
## 1908 2017-02-12 02:36:00           Kerosene
## 1909 2017-02-12 02:36:00           Kerosene
## 1910 2017-02-12 02:36:00           Kerosene
## 1911 2017-02-12 02:36:00           Kerosene
## 1912 2017-02-12 02:36:00           Kerosene
## 1913 2017-02-12 02:36:00           Kerosene
## 1914 2017-02-12 02:36:00           Kerosene
## 1915 2017-02-12 02:36:00           Kerosene
## 1916 2017-02-12 02:36:00           Kerosene
## 1917 2017-02-12 02:36:00           Kerosene
## 1918 2017-02-12 02:36:00           Kerosene
## 1919 2017-02-12 02:36:00           Kerosene
## 1920 2017-02-12 02:36:00           Kerosene
## 1921 2017-02-12 02:36:00           Kerosene
## 1922 2017-02-12 02:36:00           Kerosene
## 1923 2017-02-12 02:36:00           Kerosene
## 1924 2017-02-12 02:36:00           Kerosene
## 1925 2017-02-12 02:36:00           Kerosene
## 1926 2017-02-12 02:36:00           Kerosene
## 1927 2017-02-12 02:36:00           Kerosene
## 1928 2017-02-12 02:36:00           Kerosene
## 1929 2017-02-12 02:36:00           Kerosene
## 1930 2017-02-12 02:36:00           Kerosene
## 1931 2017-02-12 02:36:00           Kerosene
## 1932 2017-02-12 02:36:00           Kerosene
## 1933 2017-02-12 02:36:00           Kerosene
## 1934 2017-02-12 02:36:00           Kerosene
## 1935 2017-02-12 02:36:00           Kerosene
## 1936 2017-02-12 02:36:00           Kerosene
## 1937 2017-02-12 02:36:00           Kerosene
## 1938 2017-02-12 02:36:00           Kerosene
## 1939 2017-02-12 02:36:00           Kerosene
## 1940 2017-02-12 02:36:00           Kerosene
## 1941 2017-02-12 02:36:00           Kerosene
## 1942 2017-02-12 02:36:00           Kerosene
## 1943 2017-02-12 02:36:00           Kerosene
## 1944 2017-02-12 02:36:00           Kerosene
## 1945 2017-02-12 02:36:00           Kerosene
## 1946 2017-02-12 02:36:00           Kerosene
## 1947 2017-02-12 02:36:00           Kerosene
## 1948 2017-02-12 02:36:00           Kerosene
## 1949 2017-02-12 02:36:00           Kerosene
## 1950 2017-02-12 02:36:00           Kerosene
## 1951 2017-02-12 02:36:00           Kerosene
## 1952 2017-02-12 02:36:00           Kerosene
## 1953 2017-02-12 02:36:00           Kerosene
## 1954 2017-02-12 02:36:00           Kerosene
## 1955 2017-02-12 02:36:00           Kerosene
## 1956 2017-02-12 02:36:00           Kerosene
## 1957 2017-02-12 02:36:00           Kerosene
## 1958 2017-02-12 02:36:00           Kerosene
## 1959 2017-02-12 02:36:00           Kerosene
## 1960 2017-02-12 02:36:00           Kerosene
## 1961 2017-02-12 02:36:00           Kerosene
## 1962 2017-02-11 04:07:00                LPG
## 1963 2017-02-11 04:07:00                LPG
## 1964 2017-02-11 04:07:00                LPG
## 1965 2017-02-11 04:07:00                LPG
## 1966 2017-02-11 04:07:00                LPG
## 1967 2017-02-11 04:07:00                LPG
## 1968 2017-02-11 04:07:00                LPG
## 1969 2017-02-11 04:07:00                LPG
## 1970 2017-02-11 04:07:00                LPG
## 1971 2017-02-11 04:07:00                LPG
## 1972 2017-02-11 04:07:00                LPG
## 1973 2017-02-11 04:07:00                LPG
## 1974 2017-02-11 04:07:00                LPG
## 1975 2017-02-11 04:07:00                LPG
## 1976 2017-02-11 04:07:00                LPG
## 1977 2017-02-11 04:07:00                LPG
## 1978 2017-02-11 04:07:00                LPG
## 1979 2017-02-11 04:07:00                LPG
## 1980 2017-02-11 04:07:00                LPG
## 1981 2017-02-11 04:07:00                LPG
## 1982 2017-02-11 04:07:00                LPG
## 1983 2017-02-11 04:07:00                LPG
## 1984 2017-02-11 04:07:00                LPG
## 1985 2017-02-11 04:07:00                LPG
## 1986 2017-02-11 04:07:00                LPG
## 1987 2017-02-11 04:07:00                LPG
## 1988 2017-02-11 04:07:00                LPG
## 1989 2017-02-11 04:07:00                LPG
## 1990 2017-02-11 04:07:00                LPG
## 1991 2017-02-11 04:07:00                LPG
## 1992 2017-02-11 04:07:00                LPG
## 1993 2017-02-11 04:07:00                LPG
## 1994 2017-02-11 04:07:00                LPG
## 1995 2017-02-11 04:07:00                LPG
## 1996 2017-02-11 04:07:00                LPG
## 1997 2017-02-11 04:07:00                LPG
## 1998 2017-02-11 04:07:00                LPG
## 1999 2017-02-11 04:07:00                LPG
## 2000 2017-02-11 04:07:00                LPG
## 2001 2017-02-11 04:07:00                LPG
## 2002 2017-02-11 04:07:00                LPG
## 2003 2017-02-11 04:07:00                LPG
## 2004 2017-02-11 04:07:00                LPG
## 2005 2017-02-11 04:07:00                LPG
## 2006 2017-02-11 04:07:00                LPG
## 2007 2017-02-11 04:07:00                LPG
## 2008 2017-02-11 04:07:00                LPG
## 2009 2017-02-11 04:07:00                LPG
## 2010 2017-02-11 04:07:00                LPG
## 2011 2017-02-11 04:07:00                LPG
## 2012 2017-02-11 04:07:00                LPG
## 2013 2017-02-11 04:07:00                LPG
## 2014 2017-02-11 04:07:00                LPG
## 2015 2017-02-11 04:07:00                LPG
## 2016 2017-02-11 04:07:00                LPG
## 2017 2017-02-11 04:07:00                LPG
## 2018 2017-02-11 04:07:00                LPG
## 2019 2017-02-11 04:07:00                LPG
## 2020 2017-02-11 04:07:00                LPG
## 2021 2017-02-11 04:07:00                LPG
## 2022 2017-02-11 04:07:00                LPG
## 2023 2017-02-11 04:07:00                LPG
## 2024 2017-02-11 04:07:00                LPG
## 2025 2017-02-11 04:07:00                LPG
## 2026 2017-02-11 04:07:00                LPG
## 2027 2017-02-11 04:07:00                LPG
## 2028 2017-02-11 04:07:00                LPG
## 2029 2017-02-11 04:07:00                LPG
## 2030 2017-02-11 04:07:00                LPG
## 2031 2017-02-11 04:07:00                LPG
## 2032 2017-02-11 04:07:00                LPG
## 2033 2017-02-11 04:07:00                LPG
## 2034 2017-02-11 04:07:00                LPG
## 2035 2017-02-11 04:07:00                LPG
## 2036 2017-02-11 04:07:00                LPG
## 2037 2017-02-11 04:07:00                LPG
## 2038 2017-02-11 04:07:00                LPG
## 2039 2017-02-11 04:07:00                LPG
## 2040 2017-02-11 04:07:00                LPG
## 2041 2017-02-11 04:07:00                LPG
## 2042 2017-02-11 04:07:00                LPG
## 2043 2017-02-11 04:07:00                LPG
## 2044 2017-02-11 04:07:00                LPG
## 2045 2017-02-11 04:07:00                LPG
## 2046 2017-02-11 04:07:00                LPG
## 2047 2017-02-11 04:07:00                LPG
## 2048 2017-02-11 04:07:00                LPG
## 2049 2017-02-11 04:07:00                LPG
## 2050 2017-02-11 04:07:00                LPG
## 2051 2017-02-11 04:07:00                LPG
## 2052 2017-02-11 04:07:00                LPG
## 2053 2017-02-11 04:07:00                LPG
## 2054 2017-02-11 04:07:00                LPG
## 2055 2017-02-11 04:07:00                LPG
## 2056 2017-02-11 04:07:00                LPG
## 2057 2017-02-11 04:07:00                LPG
## 2058 2017-02-11 04:07:00                LPG
## 2059 2017-02-11 04:07:00                LPG
## 2060 2017-02-11 04:07:00                LPG
## 2061 2017-02-11 04:07:00                LPG
## 2062 2017-02-11 04:07:00                LPG
## 2063 2017-02-11 04:07:00                LPG
## 2064 2017-02-11 04:07:00                LPG
## 2065 2017-02-11 04:07:00                LPG
## 2066 2017-02-11 04:07:00                LPG
## 2067 2017-02-11 04:07:00                LPG
## 2068 2017-02-11 04:07:00                LPG
## 2069 2017-02-11 04:07:00                LPG
## 2070 2017-02-11 04:07:00                LPG
## 2071 2017-02-11 04:07:00                LPG
## 2072 2017-02-11 04:07:00                LPG
## 2073 2017-02-11 04:07:00                LPG
## 2074 2017-02-11 04:07:00                LPG
## 2075 2017-02-11 04:07:00                LPG
## 2076 2017-02-11 04:07:00                LPG
## 2077 2017-02-11 04:07:00                LPG
## 2078 2017-02-11 04:07:00                LPG
## 2079 2017-02-11 04:07:00                LPG
## 2080 2017-02-11 04:07:00                LPG
## 2081 2017-02-11 04:07:00                LPG
## 2082 2017-02-11 04:07:00                LPG
## 2083 2017-02-11 04:07:00                LPG
## 2084 2017-02-11 04:07:00                LPG
## 2085 2017-02-11 04:07:00                LPG
## 2086 2017-02-11 04:07:00                LPG
## 2087 2017-02-11 04:07:00                LPG
## 2088 2017-02-11 04:07:00                LPG
## 2089 2017-02-11 04:07:00                LPG
## 2090 2017-02-11 04:07:00                LPG
## 2091 2017-02-11 04:07:00                LPG
## 2092 2017-02-11 04:07:00                LPG
## 2093 2017-02-11 04:07:00                LPG
## 2094 2017-02-11 04:07:00                LPG
## 2095 2017-02-11 04:07:00                LPG
## 2096 2017-02-11 04:07:00                LPG
## 2097 2017-02-11 04:07:00                LPG
## 2098 2017-02-11 04:07:00                LPG
## 2099 2017-02-11 04:07:00                LPG
## 2100 2017-02-11 04:07:00                LPG
## 2101 2017-02-11 04:07:00                LPG
## 2102 2017-02-11 04:07:00                LPG
## 2103 2017-02-11 04:07:00                LPG
## 2104 2017-02-11 04:07:00                LPG
## 2105 2017-02-11 04:07:00                LPG
## 2106 2017-02-11 04:07:00                LPG
## 2107 2017-02-11 04:07:00                LPG
## 2108 2017-02-11 04:07:00                LPG
## 2109 2017-02-11 04:07:00                LPG
## 2110 2017-02-11 04:07:00                LPG
## 2111 2017-02-11 04:07:00                LPG
## 2112 2017-02-11 04:07:00                LPG
## 2113 2017-02-11 04:07:00                LPG
## 2114 2017-02-11 04:07:00                LPG
## 2115 2017-02-11 04:07:00                LPG
## 2116 2017-02-11 04:07:00                LPG
## 2117 2017-02-11 04:07:00                LPG
## 2118 2017-02-11 04:07:00                LPG
## 2119 2017-02-11 04:07:00                LPG
## 2120 2017-02-11 04:07:00                LPG
## 2121 2017-02-11 04:07:00                LPG
## 2122 2017-02-11 04:07:00                LPG
## 2123 2017-02-11 04:07:00                LPG
## 2124 2017-02-11 04:07:00                LPG
## 2125 2017-02-11 02:36:00          CleanCook
## 2126 2017-02-11 02:36:00          CleanCook
## 2127 2017-02-11 02:36:00          CleanCook
## 2128 2017-02-11 02:36:00          CleanCook
## 2129 2017-02-11 02:36:00          CleanCook
## 2130 2017-02-11 02:36:00          CleanCook
## 2131 2017-02-11 02:36:00          CleanCook
## 2132 2017-02-11 02:36:00          CleanCook
## 2133 2017-02-11 02:36:00          CleanCook
## 2134 2017-02-11 02:36:00          CleanCook
## 2135 2017-02-11 02:36:00          CleanCook
## 2136 2017-02-11 02:36:00          CleanCook
## 2137 2017-02-11 02:36:00          CleanCook
## 2138 2017-02-11 02:36:00          CleanCook
## 2139 2017-02-11 02:36:00          CleanCook
## 2140 2017-02-11 02:36:00          CleanCook
## 2141 2017-02-11 02:36:00          CleanCook
## 2142 2017-02-11 02:36:00          CleanCook
## 2143 2017-02-11 02:36:00          CleanCook
## 2144 2017-02-11 02:36:00          CleanCook
## 2145 2017-02-11 02:36:00          CleanCook
## 2146 2017-02-11 02:36:00          CleanCook
## 2147 2017-02-11 02:36:00          CleanCook
## 2148 2017-02-11 02:36:00          CleanCook
## 2149 2017-02-11 02:36:00          CleanCook
## 2150 2017-02-11 02:36:00          CleanCook
## 2151 2017-02-11 02:36:00          CleanCook
## 2152 2017-02-11 02:36:00          CleanCook
## 2153 2017-02-11 02:36:00          CleanCook
## 2154 2017-02-11 02:36:00          CleanCook
## 2155 2017-02-11 02:36:00          CleanCook
## 2156 2017-02-11 02:36:00          CleanCook
## 2157 2017-02-11 02:36:00          CleanCook
## 2158 2017-02-11 02:36:00          CleanCook
## 2159 2017-02-11 02:36:00          CleanCook
## 2160 2017-02-11 02:36:00          CleanCook
## 2161 2017-02-11 02:36:00          CleanCook
## 2162 2017-02-11 02:36:00          CleanCook
## 2163 2017-02-11 02:36:00          CleanCook
## 2164 2017-02-11 02:36:00          CleanCook
## 2165 2017-02-11 02:36:00          CleanCook
## 2166 2017-02-11 02:36:00          CleanCook
## 2167 2017-02-11 02:36:00          CleanCook
## 2168 2017-02-11 02:36:00          CleanCook
## 2169 2017-02-11 02:36:00          CleanCook
## 2170 2017-02-11 02:36:00          CleanCook
## 2171 2017-02-11 02:36:00          CleanCook
## 2172 2017-02-11 02:36:00          CleanCook
## 2173 2017-02-11 02:36:00          CleanCook
## 2174 2017-02-11 02:36:00          CleanCook
## 2175 2017-02-11 02:36:00          CleanCook
## 2176 2017-02-11 02:36:00          CleanCook
## 2177 2017-02-11 02:36:00          CleanCook
## 2178 2017-02-11 02:36:00          CleanCook
## 2179 2017-02-11 02:36:00          CleanCook
## 2180 2017-02-11 02:36:00          CleanCook
## 2181 2017-02-11 02:36:00          CleanCook
## 2182 2017-02-11 02:36:00          CleanCook
## 2183 2017-02-11 02:36:00          CleanCook
## 2184 2017-02-11 02:36:00          CleanCook
## 2185 2017-02-11 02:36:00          CleanCook
## 2186 2017-02-11 02:36:00          CleanCook
## 2187 2017-02-11 02:36:00          CleanCook
## 2188 2017-02-11 02:36:00          CleanCook
## 2189 2017-02-11 02:36:00          CleanCook
## 2190 2017-02-11 02:36:00          CleanCook
## 2191 2017-02-11 02:36:00          CleanCook
## 2192 2017-02-11 02:36:00          CleanCook
## 2193 2017-02-11 02:36:00          CleanCook
## 2194 2017-02-11 02:36:00          CleanCook
## 2195 2017-02-11 02:36:00          CleanCook
## 2196 2017-02-11 02:36:00          CleanCook
## 2197 2017-02-11 02:36:00          CleanCook
## 2198 2017-02-11 02:36:00          CleanCook
## 2199 2017-02-11 02:36:00          CleanCook
## 2200 2017-02-11 02:36:00          CleanCook
## 2201 2017-02-11 02:36:00          CleanCook
## 2202 2017-02-11 02:36:00          CleanCook
## 2203 2017-02-11 02:36:00          CleanCook
## 2204 2017-02-11 02:36:00          CleanCook
## 2205 2017-02-11 02:36:00          CleanCook
## 2206 2017-02-11 02:36:00          CleanCook
## 2207 2017-02-11 02:36:00          CleanCook
## 2208 2017-02-11 02:36:00          CleanCook
## 2209 2017-02-11 02:36:00          CleanCook
## 2210 2017-02-11 02:36:00          CleanCook
## 2211 2017-02-11 02:36:00          CleanCook
## 2212 2017-02-11 02:36:00          CleanCook
## 2213 2017-02-11 02:36:00          CleanCook
## 2214 2017-02-11 02:36:00          CleanCook
## 2215 2017-02-11 02:36:00          CleanCook
## 2216 2017-02-11 02:36:00          CleanCook
## 2217 2017-02-11 02:36:00          CleanCook
## 2218 2017-02-11 02:36:00          CleanCook
## 2219 2017-02-11 02:36:00          CleanCook
## 2220 2017-02-11 02:36:00          CleanCook
## 2221 2017-02-11 02:36:00          CleanCook
## 2222 2017-02-11 02:36:00          CleanCook
## 2223 2017-02-11 02:36:00          CleanCook
## 2224 2017-02-11 02:36:00          CleanCook
## 2225 2017-02-11 02:36:00          CleanCook
## 2226 2017-02-11 02:36:00          CleanCook
## 2227 2017-02-11 02:36:00          CleanCook
## 2228 2017-02-11 02:36:00          CleanCook
## 2229 2017-02-11 02:36:00          CleanCook
## 2230 2017-02-11 02:36:00          CleanCook
## 2231 2017-02-11 02:36:00          CleanCook
## 2232 2017-02-11 02:36:00          CleanCook
## 2233 2017-02-11 02:36:00          CleanCook
## 2234 2017-02-11 02:36:00          CleanCook
## 2235 2017-02-11 02:36:00          CleanCook
## 2236 2017-02-11 02:36:00          CleanCook
## 2237 2017-02-11 02:36:00          CleanCook
## 2238 2017-02-11 02:36:00          CleanCook
## 2239 2017-02-11 02:36:00          CleanCook
## 2240 2017-02-11 02:36:00          CleanCook
## 2241 2017-02-11 02:36:00          CleanCook
## 2242 2017-02-11 02:36:00          CleanCook
## 2243 2017-02-11 02:36:00          CleanCook
## 2244 2017-02-11 02:36:00          CleanCook
## 2245 2017-02-11 02:36:00          CleanCook
## 2246 2017-02-11 02:36:00          CleanCook
## 2247 2017-02-11 02:36:00          CleanCook
## 2248 2017-02-11 02:36:00          CleanCook
## 2249 2017-02-11 02:36:00          CleanCook
## 2250 2017-02-11 02:36:00          CleanCook
## 2251 2017-02-11 02:36:00          CleanCook
## 2252 2017-02-11 02:36:00          CleanCook
## 2253 2017-02-11 02:36:00          CleanCook
## 2254 2017-02-11 02:36:00          CleanCook
## 2255 2017-02-11 02:36:00          CleanCook
## 2256 2017-02-11 02:36:00          CleanCook
## 2257 2017-02-11 02:36:00          CleanCook
## 2258 2017-02-11 02:36:00          CleanCook
## 2259 2017-02-11 02:36:00          CleanCook
## 2260 2017-02-11 02:36:00          CleanCook
## 2261 2017-02-11 02:36:00          CleanCook
## 2262 2017-02-11 02:36:00          CleanCook
## 2263 2017-02-11 02:36:00          CleanCook
## 2264 2017-02-11 02:36:00          CleanCook
## 2265 2017-02-11 02:36:00          CleanCook
## 2266 2017-02-11 02:36:00          CleanCook
## 2267 2017-02-11 02:36:00          CleanCook
## 2268 2017-02-11 02:36:00          CleanCook
## 2269 2017-02-11 02:36:00          CleanCook
## 2270 2017-02-11 02:36:00          CleanCook
## 2271 2017-02-11 02:36:00          CleanCook
## 2272 2017-02-11 02:36:00          CleanCook
## 2273 2017-02-11 02:36:00          CleanCook
## 2274 2017-02-11 02:36:00          CleanCook
## 2275 2017-02-11 02:36:00          CleanCook
## 2276 2017-02-11 02:36:00          CleanCook
## 2277 2017-02-11 02:36:00          CleanCook
## 2278 2017-02-11 02:36:00          CleanCook
## 2279 2017-02-11 02:36:00          CleanCook
## 2280 2017-02-11 02:36:00          CleanCook
## 2281 2017-02-11 02:36:00          CleanCook
## 2282 2017-02-11 02:36:00          CleanCook
## 2283 2017-02-11 02:36:00          CleanCook
## 2284 2017-02-11 02:36:00          CleanCook
## 2285 2017-02-11 02:36:00          CleanCook
## 2286 2017-02-11 02:36:00          CleanCook
## 2287 2017-02-11 02:36:00          CleanCook
## 2288 2017-02-11 02:36:00          CleanCook
## 2289 2017-02-11 02:36:00          CleanCook
## 2290 2017-02-11 02:36:00          CleanCook
## 2291 2017-02-11 02:36:00          CleanCook
## 2292 2017-02-11 02:36:00          CleanCook
## 2293 2017-02-11 02:36:00          CleanCook
## 2294 2017-02-11 02:36:00          CleanCook
## 2295 2017-02-11 02:36:00          CleanCook
## 2296 2017-02-11 02:36:00          CleanCook
## 2297 2017-02-11 02:36:00          CleanCook
## 2298 2017-02-11 00:40:00           Kerosene
## 2299 2017-02-11 00:40:00           Kerosene
## 2300 2017-02-11 00:40:00           Kerosene
## 2301 2017-02-11 00:40:00           Kerosene
## 2302 2017-02-11 00:40:00           Kerosene
## 2303 2017-02-11 00:40:00           Kerosene
## 2304 2017-02-11 00:40:00           Kerosene
## 2305 2017-02-11 00:40:00           Kerosene
## 2306 2017-02-11 00:40:00           Kerosene
## 2307 2017-02-11 00:40:00           Kerosene
## 2308 2017-02-11 00:40:00           Kerosene
## 2309 2017-02-11 00:40:00           Kerosene
## 2310 2017-02-11 00:40:00           Kerosene
## 2311 2017-02-11 00:40:00           Kerosene
## 2312 2017-02-11 00:40:00           Kerosene
## 2313 2017-02-11 00:40:00           Kerosene
## 2314 2017-02-11 00:40:00           Kerosene
## 2315 2017-02-11 00:40:00           Kerosene
## 2316 2017-02-11 00:40:00           Kerosene
## 2317 2017-02-11 00:40:00           Kerosene
## 2318 2017-02-11 00:40:00           Kerosene
## 2319 2017-02-11 00:40:00           Kerosene
## 2320 2017-02-11 00:40:00           Kerosene
## 2321 2017-02-11 00:40:00           Kerosene
## 2322 2017-02-11 00:40:00           Kerosene
## 2323 2017-02-11 00:40:00           Kerosene
## 2324 2017-02-11 00:40:00           Kerosene
## 2325 2017-02-11 00:40:00           Kerosene
## 2326 2017-02-11 00:40:00           Kerosene
## 2327 2017-02-11 00:40:00           Kerosene
## 2328 2017-02-11 00:40:00           Kerosene
## 2329 2017-02-11 00:40:00           Kerosene
## 2330 2017-02-11 00:40:00           Kerosene
## 2331 2017-02-11 00:40:00           Kerosene
## 2332 2017-02-11 00:40:00           Kerosene
## 2333 2017-02-11 00:40:00           Kerosene
## 2334 2017-02-11 00:40:00           Kerosene
## 2335 2017-02-11 00:40:00           Kerosene
## 2336 2017-02-11 00:40:00           Kerosene
## 2337 2017-02-11 00:40:00           Kerosene
## 2338 2017-02-11 00:40:00           Kerosene
## 2339 2017-02-11 00:40:00           Kerosene
## 2340 2017-02-11 00:40:00           Kerosene
## 2341 2017-02-11 00:40:00           Kerosene
## 2342 2017-02-11 00:40:00           Kerosene
## 2343 2017-02-11 00:40:00           Kerosene
## 2344 2017-02-11 00:40:00           Kerosene
## 2345 2017-02-11 00:40:00           Kerosene
## 2346 2017-02-11 00:40:00           Kerosene
## 2347 2017-02-11 00:40:00           Kerosene
## 2348 2017-02-11 00:40:00           Kerosene
## 2349 2017-02-11 00:40:00           Kerosene
## 2350 2017-02-11 00:40:00           Kerosene
## 2351 2017-02-11 00:40:00           Kerosene
## 2352 2017-02-11 00:40:00           Kerosene
## 2353 2017-02-11 00:40:00           Kerosene
## 2354 2017-02-11 00:40:00           Kerosene
## 2355 2017-02-11 00:40:00           Kerosene
## 2356 2017-02-11 00:40:00           Kerosene
## 2357 2017-02-11 00:40:00           Kerosene
## 2358 2017-02-11 00:40:00           Kerosene
## 2359 2017-02-11 00:40:00           Kerosene
## 2360 2017-02-11 00:40:00           Kerosene
## 2361 2017-02-11 00:40:00           Kerosene
## 2362 2017-02-11 00:40:00           Kerosene
## 2363 2017-02-11 00:40:00           Kerosene
## 2364 2017-02-11 00:40:00           Kerosene
## 2365 2017-02-11 00:40:00           Kerosene
## 2366 2017-02-11 00:40:00           Kerosene
## 2367 2017-02-11 00:40:00           Kerosene
## 2368 2017-02-11 00:40:00           Kerosene
## 2369 2017-02-11 00:40:00           Kerosene
## 2370 2017-02-11 00:40:00           Kerosene
## 2371 2017-02-11 00:40:00           Kerosene
## 2372 2017-02-11 00:40:00           Kerosene
## 2373 2017-02-11 00:40:00           Kerosene
## 2374 2017-02-11 00:40:00           Kerosene
## 2375 2017-02-11 00:40:00           Kerosene
## 2376 2017-02-11 00:40:00           Kerosene
## 2377 2017-02-11 00:40:00           Kerosene
## 2378 2017-02-11 00:40:00           Kerosene
## 2379 2017-02-11 00:40:00           Kerosene
## 2380 2017-02-11 00:40:00           Kerosene
## 2381 2017-02-11 00:40:00           Kerosene
## 2382 2017-02-11 00:40:00           Kerosene
## 2383 2017-02-11 00:40:00           Kerosene
## 2384 2017-02-11 00:40:00           Kerosene
## 2385 2017-02-11 00:40:00           Kerosene
## 2386 2017-02-11 00:40:00           Kerosene
## 2387 2017-02-11 00:40:00           Kerosene
## 2388 2017-02-11 00:40:00           Kerosene
## 2389 2017-02-11 00:40:00           Kerosene
## 2390 2017-02-11 00:40:00           Kerosene
## 2391 2017-02-11 00:40:00           Kerosene
## 2392 2017-02-11 00:40:00           Kerosene
## 2393 2017-02-11 00:40:00           Kerosene
## 2394 2017-02-11 00:40:00           Kerosene
## 2395 2017-02-11 00:40:00           Kerosene
## 2396 2017-02-11 00:40:00           Kerosene
## 2397 2017-02-11 00:40:00           Kerosene
## 2398 2017-02-11 00:40:00           Kerosene
## 2399 2017-02-11 00:40:00           Kerosene
## 2400 2017-02-11 00:40:00           Kerosene
## 2401 2017-02-11 00:40:00           Kerosene
## 2402 2017-02-11 00:40:00           Kerosene
## 2403 2017-02-11 00:40:00           Kerosene
## 2404 2017-02-11 00:40:00           Kerosene
## 2405 2017-02-11 00:40:00           Kerosene
## 2406 2017-02-11 00:40:00           Kerosene
## 2407 2017-02-11 00:40:00           Kerosene
## 2408 2017-02-11 00:40:00           Kerosene
## 2409 2017-02-11 00:40:00           Kerosene
## 2410 2017-02-11 00:40:00           Kerosene
## 2411 2017-02-11 00:40:00           Kerosene
## 2412 2017-02-11 00:40:00           Kerosene
## 2413 2017-02-11 00:40:00           Kerosene
## 2414 2017-02-11 00:40:00           Kerosene
## 2415 2017-02-11 00:40:00           Kerosene
## 2416 2017-02-11 00:40:00           Kerosene
## 2417 2017-02-11 00:40:00           Kerosene
## 2418 2017-02-11 00:40:00           Kerosene
## 2419 2017-02-11 00:40:00           Kerosene
## 2420 2017-02-11 00:40:00           Kerosene
## 2421 2017-02-11 00:40:00           Kerosene
## 2422 2017-02-11 00:40:00           Kerosene
## 2423 2017-02-11 00:40:00           Kerosene
## 2424 2017-02-11 00:40:00           Kerosene
## 2425 2017-02-11 00:40:00           Kerosene
## 2426 2017-02-11 00:40:00           Kerosene
## 2427 2017-02-11 00:40:00           Kerosene
## 2428 2017-02-11 00:40:00           Kerosene
## 2429 2017-02-11 00:40:00           Kerosene
## 2430 2017-02-11 00:40:00           Kerosene
## 2431 2017-02-11 00:40:00           Kerosene
## 2432 2017-02-11 00:40:00           Kerosene
## 2433 2017-02-11 00:40:00           Kerosene
## 2434 2017-02-11 00:40:00           Kerosene
## 2435 2017-02-11 00:40:00           Kerosene
## 2436 2017-02-11 00:40:00           Kerosene
## 2437 2017-02-11 00:40:00           Kerosene
## 2438 2017-02-11 00:40:00           Kerosene
## 2439 2017-11-05 07:17:00                LPG
## 2440 2017-11-05 07:17:00                LPG
## 2441 2018-02-09 14:50:00           Kerosene
## 2442 2018-02-09 14:50:00           Kerosene
## 2443 2018-02-09 14:50:00           Kerosene
## 2444 2018-02-09 14:50:00           Kerosene
## 2445 2018-02-09 14:50:00           Kerosene
## 2446 2018-02-09 14:50:00           Kerosene
## 2447 2018-02-09 14:50:00           Kerosene
## 2448 2018-02-04 17:26:00          CleanCook
## 2449 2018-02-04 17:26:00          CleanCook
## 2450 2018-02-04 17:26:00          CleanCook
## 2451 2018-02-04 17:26:00          CleanCook
## 2452 2018-02-04 17:26:00          CleanCook
## 2453 2018-02-04 17:26:00          CleanCook
## 2454 2018-01-10 10:21:00           Kerosene
## 2455 2018-01-10 10:21:00           Kerosene
## 2456 2018-01-10 10:21:00           Kerosene
## 2457 2018-01-07 09:19:00          CleanCook
## 2458 2018-01-07 09:19:00          CleanCook
## 2459 2018-01-07 09:19:00          CleanCook
## 2460 2018-01-07 09:19:00          CleanCook
## 2461 2018-01-07 09:19:00          CleanCook
## 2462 2018-01-07 09:19:00          CleanCook
## 2463 2018-01-03 10:35:00           Kerosene
## 2464 2018-01-03 10:35:00           Kerosene
## 2465 2018-01-03 10:35:00           Kerosene
## 2466 2017-12-17 16:10:00          CleanCook
## 2467 2017-12-17 16:10:00          CleanCook
## 2468 2017-12-17 16:10:00          CleanCook
## 2469 2017-12-17 16:10:00          CleanCook
## 2470 2017-12-17 16:10:00          CleanCook
## 2471 2017-12-17 16:10:00          CleanCook
## 2472 2017-12-17 16:10:00          CleanCook
## 2473 2017-12-17 16:10:00          CleanCook
## 2474 2017-12-17 16:10:00          CleanCook
## 2475 2017-12-17 16:10:00          CleanCook
## 2476 2017-12-17 16:10:00          CleanCook
## 2477 2017-12-17 16:10:00          CleanCook
## 2478 2017-12-17 16:10:00          CleanCook
## 2479 2017-12-17 16:10:00          CleanCook
## 2480 2017-12-17 16:10:00          CleanCook
## 2481 2017-11-15 00:04:00           Kerosene
## 2482 2017-11-15 00:01:00          CleanCook
## 2483 2017-10-07 12:57:00                LPG
## 2484 2017-10-07 12:57:00                LPG
## 2485 2017-10-07 12:57:00                LPG
## 2486 2017-10-07 12:57:00                LPG
## 2487 2017-10-07 12:57:00                LPG
## 2488 2017-10-07 12:57:00                LPG
## 2489 2017-10-07 12:57:00                LPG
## 2490 2017-10-07 12:57:00                LPG
## 2491 2017-10-07 12:57:00                LPG
## 2492 2017-10-07 12:57:00                LPG
## 2493 2017-10-07 12:57:00                LPG
## 2494 2017-10-07 12:57:00                LPG
## 2495 2017-10-07 12:57:00                LPG
## 2496 2017-10-07 12:57:00                LPG
## 2497 2017-10-07 12:57:00                LPG
## 2498 2017-10-07 12:57:00                LPG
## 2499 2017-10-16 18:45:00          CleanCook
## 2500 2017-10-16 18:45:00          CleanCook
## 2501 2017-10-16 18:45:00          CleanCook
## 2502 2017-10-16 18:45:00          CleanCook
## 2503 2017-10-16 18:45:00          CleanCook
## 2504 2017-10-16 18:45:00          CleanCook
## 2505 2017-10-16 18:45:00          CleanCook
## 2506 2017-10-15 13:21:00           Kerosene
## 2507 2017-10-15 13:21:00           Kerosene
## 2508 2017-10-15 13:21:00           Kerosene
## 2509 2017-10-15 13:21:00           Kerosene
## 2510 2017-10-15 13:21:00           Kerosene
## 2511 2017-10-15 13:21:00           Kerosene
## 2512 2017-10-15 13:21:00           Kerosene
## 2513 2017-10-15 13:21:00           Kerosene
## 2514 2017-10-15 13:21:00           Kerosene
## 2515 2017-10-15 13:21:00           Kerosene
## 2516 2017-10-15 13:21:00           Kerosene
## 2517 2017-10-15 13:21:00           Kerosene
## 2518 2017-10-15 13:21:00           Kerosene
## 2519 2017-10-15 13:21:00           Kerosene
## 2520 2017-10-12 07:18:00           Kerosene
## 2521 2017-10-07 14:10:00          CleanCook
## 2522 2017-10-07 14:10:00          CleanCook
## 2523 2017-10-07 14:10:00          CleanCook
## 2524 2017-10-07 14:10:00          CleanCook
## 2525 2017-10-07 14:10:00          CleanCook
## 2526 2017-10-07 14:10:00          CleanCook
## 2527 2017-10-07 14:10:00          CleanCook
## 2528 2018-01-26 16:54:00          CleanCook
## 2529 2018-01-26 16:54:00          CleanCook
## 2530 2018-01-26 16:54:00          CleanCook
## 2531 2018-01-26 16:54:00          CleanCook
## 2532 2018-01-26 16:54:00          CleanCook
## 2533 2018-01-26 16:54:00          CleanCook
## 2534 2018-01-21 20:47:00           Kerosene
## 2535 2018-01-21 20:47:00           Kerosene
## 2536 2018-01-21 20:47:00           Kerosene
## 2537 2018-01-21 20:47:00           Kerosene
## 2538 2018-01-21 20:47:00           Kerosene
## 2539 2018-02-05 18:56:00           Kerosene
## 2540 2018-02-05 18:56:00           Kerosene
## 2541 2018-02-05 18:56:00           Kerosene
## 2542 2018-02-05 18:56:00           Kerosene
## 2543 2018-02-05 18:56:00           Kerosene
## 2544 2018-02-05 18:56:00           Kerosene
## 2545 2018-02-05 18:56:00           Kerosene
## 2546 2018-02-05 18:56:00           Kerosene
## 2547 2018-02-05 18:56:00           Kerosene
## 2548 2018-02-05 18:56:00           Kerosene
## 2549 2018-02-05 18:56:00           Kerosene
## 2550 2018-02-05 18:56:00           Kerosene
## 2551 2018-02-05 18:56:00           Kerosene
## 2552 2018-02-05 18:56:00           Kerosene
## 2553 2018-02-05 18:56:00           Kerosene
## 2554 2018-02-17 09:13:00          CleanCook
## 2555 2018-02-17 09:13:00          CleanCook
## 2556 2018-01-07 00:02:00          CleanCook
## 2557 2018-01-07 11:44:00           Kerosene
## 2558 2018-01-07 11:44:00           Kerosene
## 2559 2018-01-07 11:44:00           Kerosene
## 2560 2018-01-07 11:44:00           Kerosene
## 2561 2018-01-07 11:44:00           Kerosene
## 2562 2018-01-07 11:44:00           Kerosene
## 2563 2018-01-07 11:44:00           Kerosene
## 2564 2018-01-07 11:44:00           Kerosene
## 2565 2018-01-07 11:44:00           Kerosene
## 2566 2018-01-07 11:44:00           Kerosene
## 2567 2018-01-07 11:44:00           Kerosene
## 2568 2018-01-07 11:44:00           Kerosene
## 2569 2018-01-07 11:44:00           Kerosene
## 2570 2018-01-07 11:44:00           Kerosene
## 2571 2017-12-18 07:42:00           Kerosene
## 2572 2017-12-18 07:42:00           Kerosene
## 2573 2017-12-18 07:42:00           Kerosene
## 2574 2017-12-18 07:42:00           Kerosene
## 2575 2017-12-18 07:42:00           Kerosene
## 2576 2017-12-18 07:42:00           Kerosene
## 2577 2017-12-18 07:42:00           Kerosene
## 2578 2017-12-18 07:42:00           Kerosene
## 2579 2017-12-18 07:42:00           Kerosene
## 2580 2017-12-18 07:42:00           Kerosene
## 2581 2017-12-18 07:42:00           Kerosene
## 2582 2017-12-18 07:42:00           Kerosene
## 2583 2017-12-18 07:42:00           Kerosene
## 2584 2017-12-18 07:42:00           Kerosene
## 2585 2017-12-18 07:42:00           Kerosene
## 2586 2017-12-18 07:42:00           Kerosene
## 2587 2017-12-18 07:42:00           Kerosene
## 2588 2017-12-18 07:42:00           Kerosene
## 2589 2017-12-18 07:42:00           Kerosene
## 2590 2017-12-18 07:42:00           Kerosene
## 2591 2017-12-18 07:42:00           Kerosene
## 2592 2017-12-18 07:42:00           Kerosene
## 2593 2017-12-18 07:42:00           Kerosene
## 2594 2017-12-18 07:42:00           Kerosene
## 2595 2017-12-18 07:42:00           Kerosene
## 2596 2017-12-18 07:42:00           Kerosene
## 2597 2017-12-18 07:42:00           Kerosene
## 2598 2017-12-18 07:42:00           Kerosene
## 2599 2017-12-18 07:42:00           Kerosene
## 2600 2017-12-17 07:49:00          CleanCook
## 2601 2017-12-17 07:49:00          CleanCook
## 2602 2017-12-17 07:49:00          CleanCook
## 2603 2017-12-17 07:49:00          CleanCook
## 2604 2017-12-17 07:49:00          CleanCook
## 2605 2017-12-17 07:49:00          CleanCook
## 2606 2017-11-15 08:36:00          CleanCook
## 2607 2017-11-15 08:36:00          CleanCook
## 2608 2017-11-15 08:36:00          CleanCook
## 2609 2017-11-15 08:36:00          CleanCook
## 2610 2017-11-15 08:36:00          CleanCook
## 2611 2017-11-15 08:36:00          CleanCook
## 2612 2017-11-15 08:36:00          CleanCook
## 2613 2017-11-15 08:36:00          CleanCook
## 2614 2017-11-15 08:36:00          CleanCook
## 2615 2017-11-15 08:36:00          CleanCook
## 2616 2017-11-19 08:29:00           Kerosene
## 2617 2017-11-19 08:29:00           Kerosene
## 2618 2017-11-19 08:29:00           Kerosene
## 2619 2017-10-07 00:05:00           Kerosene
## 2620 2017-10-19 00:05:00                LPG
## 2621 2017-10-21 16:03:00          CleanCook
## 2622 2017-10-21 16:03:00          CleanCook
## 2623 2017-10-21 16:03:00          CleanCook
## 2624 2017-10-21 16:03:00          CleanCook
## 2625 2017-10-21 16:03:00          CleanCook
## 2626 2017-10-21 16:03:00          CleanCook
## 2627 2017-10-21 16:03:00          CleanCook
## 2628 2017-10-21 16:03:00          CleanCook
## 2629 2017-10-21 16:03:00          CleanCook
## 2630 2017-10-21 16:03:00          CleanCook
## 2631 2017-10-21 16:03:00          CleanCook
## 2632 2017-10-21 16:03:00          CleanCook
## 2633 2017-10-21 16:03:00          CleanCook
## 2634 2017-10-21 16:03:00          CleanCook
## 2635 2017-10-21 16:03:00          CleanCook
## 2636 2017-10-21 16:03:00          CleanCook
## 2637 2017-10-21 16:03:00          CleanCook
## 2638 2017-10-21 16:03:00          CleanCook
## 2639 2017-10-21 16:03:00          CleanCook
## 2640 2017-10-21 16:03:00          CleanCook
## 2641 2017-10-21 16:03:00          CleanCook
## 2642 2017-10-21 16:03:00          CleanCook
## 2643 2017-10-21 16:03:00          CleanCook
## 2644 2017-10-07 10:08:00                LPG
## 2645 2017-10-07 10:08:00                LPG
## 2646 2017-10-07 10:08:00                LPG
## 2647 2017-10-07 10:08:00                LPG
## 2648 2017-10-07 10:08:00                LPG
## 2649 2017-10-07 10:08:00                LPG
## 2650 2017-10-07 10:08:00                LPG
## 2651 2017-10-07 10:08:00                LPG
## 2652 2017-10-07 10:08:00                LPG
## 2653 2017-10-07 10:08:00                LPG
## 2654 2017-10-07 10:08:00                LPG
## 2655 2017-10-07 10:08:00                LPG
## 2656 2017-10-07 10:08:00                LPG
## 2657 2017-10-07 10:08:00                LPG
## 2658 2017-10-07 10:08:00                LPG
## 2659 2017-10-07 10:08:00                LPG
## 2660 2017-10-07 10:08:00                LPG
## 2661 2017-10-07 10:08:00                LPG
## 2662 2017-10-07 10:08:00                LPG
## 2663 2017-10-07 10:08:00                LPG
## 2664 2017-10-07 10:08:00                LPG
## 2665 2017-10-07 10:08:00                LPG
## 2666 2017-10-07 10:08:00                LPG
## 2667 2017-10-07 10:08:00                LPG
## 2668 2017-10-07 10:08:00                LPG
## 2669 2017-10-07 10:08:00                LPG
## 2670 2017-10-07 10:08:00                LPG
## 2671 2017-10-07 12:23:00          CleanCook
## 2672 2017-10-07 12:23:00          CleanCook
## 2673 2017-10-07 12:23:00          CleanCook
## 2674 2017-10-07 12:23:00          CleanCook
## 2675 2017-10-07 12:23:00          CleanCook
## 2676 2017-10-07 12:23:00          CleanCook
## 2677 2017-10-07 12:23:00          CleanCook
## 2678 2017-10-07 12:23:00          CleanCook
## 2679 2017-10-07 12:23:00          CleanCook
## 2680 2017-10-07 12:23:00          CleanCook
## 2681 2017-10-07 12:23:00          CleanCook
## 2682 2018-01-21 00:02:00          CleanCook
## 2683 2018-01-21 17:46:00           Kerosene
## 2684 2018-01-21 17:46:00           Kerosene
## 2685 2018-01-21 17:46:00           Kerosene
## 2686 2018-01-21 17:46:00           Kerosene
## 2687 2018-01-21 17:46:00           Kerosene
## 2688 2018-01-21 17:46:00           Kerosene
## 2689 2018-01-21 17:46:00           Kerosene
## 2690 2018-01-21 17:46:00           Kerosene
## 2691 2018-01-21 17:46:00           Kerosene
## 2692 2018-01-21 17:46:00           Kerosene
## 2693 2018-01-21 17:46:00           Kerosene
## 2694 2018-01-21 17:46:00           Kerosene
## 2695 2018-01-21 17:46:00           Kerosene
## 2696 2018-01-21 17:46:00           Kerosene
## 2697 2017-12-10 00:00:00           Kerosene
## 2698 2018-01-09 10:47:00          CleanCook
## 2699 2018-01-09 10:47:00          CleanCook
## 2700 2018-01-09 10:47:00          CleanCook
## 2701 2018-01-09 10:47:00          CleanCook
## 2702 2018-01-09 10:47:00          CleanCook
## 2703 2018-01-09 10:47:00          CleanCook
## 2704 2018-01-09 10:47:00          CleanCook
## 2705 2018-01-09 10:47:00          CleanCook
## 2706 2018-01-09 10:47:00          CleanCook
## 2707 2018-01-09 10:47:00          CleanCook
## 2708 2018-01-09 10:47:00          CleanCook
## 2709 2018-01-09 10:47:00          CleanCook
## 2710 2018-01-09 10:47:00          CleanCook
## 2711 2018-01-09 10:47:00          CleanCook
## 2712 2018-01-09 10:47:00          CleanCook
## 2713 2018-01-09 10:47:00          CleanCook
## 2714 2018-01-09 10:47:00          CleanCook
## 2715 2018-01-09 10:47:00          CleanCook
## 2716 2017-11-26 06:51:00          CleanCook
## 2717 2017-11-26 06:51:00          CleanCook
## 2718 2017-11-26 06:51:00          CleanCook
## 2719 2017-11-26 06:51:00          CleanCook
## 2720 2017-11-26 06:51:00          CleanCook
## 2721 2017-11-26 06:51:00          CleanCook
## 2722 2017-11-26 06:51:00          CleanCook
## 2723 2017-11-26 06:51:00          CleanCook
## 2724 2017-11-26 06:51:00          CleanCook
## 2725 2017-11-26 06:51:00          CleanCook
## 2726 2017-11-26 06:51:00          CleanCook
## 2727 2017-11-26 06:51:00          CleanCook
## 2728 2017-11-26 06:51:00          CleanCook
## 2729 2017-11-26 06:51:00          CleanCook
## 2730 2017-11-15 00:01:00           Kerosene
## 2731 2017-11-15 07:49:00          CleanCook
## 2732 2017-11-15 07:49:00          CleanCook
## 2733 2017-11-15 07:49:00          CleanCook
## 2734 2017-11-15 07:49:00          CleanCook
## 2735 2017-11-15 07:49:00          CleanCook
## 2736 2017-11-15 07:49:00          CleanCook
## 2737 2017-11-15 07:49:00          CleanCook
## 2738 2017-11-15 07:49:00          CleanCook
## 2739 2017-11-15 07:49:00          CleanCook
## 2740 2017-11-15 07:49:00          CleanCook
## 2741 2017-11-15 07:49:00          CleanCook
## 2742 2017-11-15 07:49:00          CleanCook
## 2743 2017-10-22 10:31:00          CleanCook
## 2744 2017-10-22 10:31:00          CleanCook
## 2745 2017-10-22 10:31:00          CleanCook
## 2746 2017-10-22 10:31:00          CleanCook
## 2747 2017-10-22 10:31:00          CleanCook
## 2748 2017-10-22 10:31:00          CleanCook
## 2749 2017-10-22 10:31:00          CleanCook
## 2750 2017-10-22 10:31:00          CleanCook
## 2751 2017-10-22 10:31:00          CleanCook
## 2752 2017-10-17 06:35:00           Kerosene
## 2753 2017-10-17 06:35:00           Kerosene
## 2754 2017-10-17 06:35:00           Kerosene
## 2755 2017-10-07 11:00:00                LPG
## 2756 2017-10-07 11:00:00                LPG
## 2757 2017-10-07 11:00:00                LPG
## 2758 2017-10-07 18:16:00           Kerosene
## 2759 2017-10-07 18:16:00           Kerosene
## 2760 2017-10-07 18:16:00           Kerosene
## 2761 2017-10-07 18:16:00           Kerosene
## 2762 2017-10-07 18:16:00           Kerosene
## 2763 2017-10-07 21:16:00          CleanCook
## 2764 2017-10-07 21:16:00          CleanCook
## 2765 2017-10-07 21:16:00          CleanCook
## 2766 2017-10-07 21:16:00          CleanCook
## 2767 2017-10-07 21:16:00          CleanCook
## 2768 2017-10-07 21:16:00          CleanCook
## 2769 2017-10-07 21:16:00          CleanCook
## 2770 2017-10-07 21:16:00          CleanCook
## 2771 2017-10-07 21:16:00          CleanCook
## 2772 2017-10-07 21:16:00          CleanCook
## 2773 2017-10-07 21:16:00          CleanCook
## 2774 2017-10-07 21:16:00          CleanCook
## 2775 2017-10-07 21:16:00          CleanCook
## 2776 2017-10-07 21:16:00          CleanCook
## 2777 2017-10-07 21:16:00          CleanCook
## 2778 2017-10-07 21:16:00          CleanCook
## 2779 2017-10-07 21:16:00          CleanCook
## 2780 2017-10-07 21:16:00          CleanCook
## 2781 2017-10-07 21:16:00          CleanCook
## 2782 2017-10-07 21:16:00          CleanCook
## 2783 2017-11-30 05:44:00           Kerosene
## 2784 2017-11-30 05:44:00           Kerosene
## 2785 2017-11-30 05:44:00           Kerosene
## 2786 2017-11-30 05:44:00           Kerosene
## 2787 2017-11-30 05:44:00           Kerosene
## 2788 2017-11-30 05:44:00           Kerosene
## 2789 2017-11-30 05:44:00           Kerosene
## 2790 2017-11-30 05:44:00           Kerosene
## 2791 2017-11-30 05:44:00           Kerosene
## 2792 2017-11-30 05:44:00           Kerosene
## 2793 2017-11-30 05:44:00           Kerosene
## 2794 2017-11-30 05:44:00           Kerosene
## 2795 2017-11-30 05:44:00           Kerosene
## 2796 2017-11-30 05:44:00           Kerosene
## 2797 2017-11-30 05:44:00           Kerosene
## 2798 2017-11-30 05:44:00           Kerosene
## 2799 2017-11-30 05:44:00           Kerosene
## 2800 2017-11-30 05:44:00           Kerosene
## 2801 2017-11-30 05:44:00           Kerosene
## 2802 2017-11-30 05:44:00           Kerosene
## 2803 2017-11-30 05:44:00           Kerosene
## 2804 2017-11-30 05:44:00           Kerosene
## 2805 2017-11-30 05:44:00           Kerosene
## 2806 2017-11-30 05:44:00           Kerosene
## 2807 2017-12-08 08:49:00          CleanCook
## 2808 2017-12-08 08:49:00          CleanCook
## 2809 2017-02-12 02:49:00          CleanCook
## 2810 2017-02-12 02:49:00          CleanCook
## 2811 2017-02-12 02:49:00          CleanCook
## 2812 2017-02-12 02:49:00          CleanCook
## 2813 2017-02-12 02:49:00          CleanCook
## 2814 2017-02-12 02:49:00          CleanCook
## 2815 2017-02-12 02:49:00          CleanCook
## 2816 2017-02-12 02:49:00          CleanCook
## 2817 2017-02-12 02:49:00          CleanCook
## 2818 2017-02-12 02:49:00          CleanCook
## 2819 2017-02-12 02:49:00          CleanCook
## 2820 2017-02-12 02:49:00          CleanCook
## 2821 2017-02-12 02:49:00          CleanCook
## 2822 2017-02-12 02:49:00          CleanCook
## 2823 2017-02-12 02:49:00          CleanCook
## 2824 2017-02-12 02:49:00          CleanCook
## 2825 2017-02-12 02:49:00          CleanCook
## 2826 2017-02-12 02:49:00          CleanCook
## 2827 2017-02-12 02:49:00          CleanCook
## 2828 2017-02-12 02:49:00          CleanCook
## 2829 2017-02-12 02:49:00          CleanCook
## 2830 2017-02-12 02:49:00          CleanCook
## 2831 2017-02-12 02:49:00          CleanCook
## 2832 2017-02-12 02:49:00          CleanCook
## 2833 2017-02-12 02:49:00          CleanCook
## 2834 2017-02-12 02:49:00          CleanCook
## 2835 2017-02-12 02:49:00          CleanCook
## 2836 2017-02-12 02:49:00          CleanCook
## 2837 2017-02-12 02:49:00          CleanCook
## 2838 2017-02-12 02:49:00          CleanCook
## 2839 2017-02-12 02:49:00          CleanCook
## 2840 2017-02-12 02:49:00          CleanCook
## 2841 2017-02-12 02:49:00          CleanCook
## 2842 2017-02-12 02:49:00          CleanCook
## 2843 2017-02-12 02:49:00          CleanCook
## 2844 2017-02-12 02:49:00          CleanCook
## 2845 2017-02-12 02:49:00          CleanCook
## 2846 2017-02-12 02:49:00          CleanCook
## 2847 2017-02-12 02:49:00          CleanCook
## 2848 2017-02-12 02:49:00          CleanCook
## 2849 2017-02-12 02:49:00          CleanCook
## 2850 2017-02-12 02:49:00          CleanCook
## 2851 2017-02-12 02:49:00          CleanCook
## 2852 2017-02-12 02:49:00          CleanCook
## 2853 2017-02-12 02:49:00          CleanCook
## 2854 2017-02-12 02:49:00          CleanCook
## 2855 2017-02-12 02:49:00          CleanCook
## 2856 2017-02-12 02:49:00          CleanCook
## 2857 2017-02-12 02:49:00          CleanCook
## 2858 2017-02-12 02:49:00          CleanCook
## 2859 2017-02-12 02:49:00          CleanCook
## 2860 2017-02-12 02:49:00          CleanCook
## 2861 2017-02-12 02:49:00          CleanCook
## 2862 2017-02-12 02:49:00          CleanCook
## 2863 2017-02-12 02:49:00          CleanCook
## 2864 2017-02-12 02:49:00          CleanCook
## 2865 2017-02-12 02:49:00          CleanCook
## 2866 2017-02-12 02:49:00          CleanCook
## 2867 2017-02-12 02:49:00          CleanCook
## 2868 2017-02-12 02:49:00          CleanCook
## 2869 2017-02-12 02:49:00          CleanCook
## 2870 2017-02-12 02:49:00          CleanCook
## 2871 2017-02-12 02:49:00          CleanCook
## 2872 2017-02-12 02:49:00          CleanCook
## 2873 2017-02-12 02:49:00          CleanCook
## 2874 2017-02-12 02:49:00          CleanCook
## 2875 2017-02-12 02:49:00          CleanCook
## 2876 2017-02-12 02:49:00          CleanCook
## 2877 2017-02-12 02:49:00          CleanCook
## 2878 2017-02-12 02:49:00          CleanCook
## 2879 2017-02-12 02:49:00          CleanCook
## 2880 2017-02-12 02:49:00          CleanCook
## 2881 2017-02-12 02:49:00          CleanCook
## 2882 2017-02-12 02:49:00          CleanCook
## 2883 2017-02-12 02:49:00          CleanCook
## 2884 2017-02-12 02:49:00          CleanCook
## 2885 2017-02-12 02:49:00          CleanCook
## 2886 2017-02-12 02:49:00          CleanCook
## 2887 2017-02-12 02:49:00          CleanCook
## 2888 2017-02-12 02:49:00          CleanCook
## 2889 2017-02-12 02:49:00          CleanCook
## 2890 2017-02-12 02:49:00          CleanCook
## 2891 2017-02-12 02:49:00          CleanCook
## 2892 2017-02-12 02:49:00          CleanCook
## 2893 2017-02-12 02:49:00          CleanCook
## 2894 2017-02-12 02:49:00          CleanCook
## 2895 2017-02-12 02:49:00          CleanCook
## 2896 2017-02-12 02:49:00          CleanCook
## 2897 2017-02-12 02:49:00          CleanCook
## 2898 2017-02-12 02:49:00          CleanCook
## 2899 2017-02-12 02:49:00          CleanCook
## 2900 2017-02-12 02:49:00          CleanCook
## 2901 2017-02-12 02:49:00          CleanCook
## 2902 2017-02-12 02:49:00          CleanCook
## 2903 2017-02-12 02:49:00          CleanCook
## 2904 2017-02-12 02:49:00          CleanCook
## 2905 2017-02-12 02:49:00          CleanCook
## 2906 2017-02-12 02:49:00          CleanCook
## 2907 2017-02-12 02:49:00          CleanCook
## 2908 2017-02-12 02:49:00          CleanCook
## 2909 2017-02-12 02:49:00          CleanCook
## 2910 2017-02-12 02:49:00          CleanCook
## 2911 2017-02-12 02:49:00          CleanCook
## 2912 2017-02-12 02:49:00          CleanCook
## 2913 2017-02-12 02:49:00          CleanCook
## 2914 2017-02-12 02:49:00          CleanCook
## 2915 2017-02-12 02:49:00          CleanCook
## 2916 2017-02-12 02:49:00          CleanCook
## 2917 2017-02-12 02:49:00          CleanCook
## 2918 2017-02-12 02:49:00          CleanCook
## 2919 2017-02-12 05:24:00           Kerosene
## 2920 2017-02-12 05:24:00           Kerosene
## 2921 2017-02-12 05:24:00           Kerosene
## 2922 2017-02-12 05:24:00           Kerosene
## 2923 2017-02-12 05:24:00           Kerosene
## 2924 2017-02-12 05:24:00           Kerosene
## 2925 2017-02-12 05:24:00           Kerosene
## 2926 2017-02-12 05:24:00           Kerosene
## 2927 2017-02-12 05:24:00           Kerosene
## 2928 2017-02-12 05:24:00           Kerosene
## 2929 2017-02-12 05:24:00           Kerosene
## 2930 2017-02-12 05:24:00           Kerosene
## 2931 2017-02-12 05:24:00           Kerosene
## 2932 2017-02-12 05:24:00           Kerosene
## 2933 2017-02-12 05:24:00           Kerosene
## 2934 2017-02-12 05:24:00           Kerosene
## 2935 2017-02-12 05:24:00           Kerosene
## 2936 2017-02-12 05:24:00           Kerosene
## 2937 2017-02-12 05:24:00           Kerosene
## 2938 2017-02-12 05:24:00           Kerosene
## 2939 2017-02-12 05:24:00           Kerosene
## 2940 2017-02-12 05:24:00           Kerosene
## 2941 2017-02-12 05:24:00           Kerosene
## 2942 2017-02-12 05:24:00           Kerosene
## 2943 2017-02-12 05:24:00           Kerosene
## 2944 2017-02-12 05:24:00           Kerosene
## 2945 2017-02-12 05:24:00           Kerosene
## 2946 2017-02-12 05:24:00           Kerosene
## 2947 2017-02-12 05:24:00           Kerosene
## 2948 2017-02-12 05:24:00           Kerosene
## 2949 2017-02-12 05:24:00           Kerosene
## 2950 2017-02-12 05:24:00           Kerosene
## 2951 2017-02-12 05:24:00           Kerosene
## 2952 2017-02-12 05:24:00           Kerosene
## 2953 2017-02-12 05:24:00           Kerosene
## 2954 2017-02-12 05:24:00           Kerosene
## 2955 2017-02-12 05:24:00           Kerosene
## 2956 2017-02-12 05:24:00           Kerosene
## 2957 2017-02-12 05:24:00           Kerosene
## 2958 2017-02-12 05:24:00           Kerosene
## 2959 2017-02-12 05:24:00           Kerosene
## 2960 2017-02-12 05:24:00           Kerosene
## 2961 2017-02-12 05:24:00           Kerosene
## 2962 2017-02-12 05:24:00           Kerosene
## 2963 2017-02-12 05:24:00           Kerosene
## 2964 2017-02-12 05:24:00           Kerosene
## 2965 2017-02-12 05:24:00           Kerosene
## 2966 2017-02-12 05:24:00           Kerosene
## 2967 2017-02-12 05:24:00           Kerosene
## 2968 2017-02-12 05:24:00           Kerosene
## 2969 2017-02-12 05:24:00           Kerosene
## 2970 2017-02-12 05:24:00           Kerosene
## 2971 2017-02-12 05:24:00           Kerosene
## 2972 2017-02-12 05:24:00           Kerosene
## 2973 2017-02-12 05:24:00           Kerosene
## 2974 2017-02-12 05:24:00           Kerosene
## 2975 2017-02-12 05:24:00           Kerosene
## 2976 2017-02-12 05:24:00           Kerosene
## 2977 2017-02-12 05:24:00           Kerosene
## 2978 2017-02-12 05:24:00           Kerosene
## 2979 2017-02-12 05:24:00           Kerosene
## 2980 2017-02-12 05:24:00           Kerosene
## 2981 2017-02-12 05:24:00           Kerosene
## 2982 2017-02-12 05:24:00           Kerosene
## 2983 2017-02-12 05:24:00           Kerosene
## 2984 2017-02-12 05:24:00           Kerosene
## 2985 2017-02-12 05:24:00           Kerosene
## 2986 2017-02-12 05:24:00           Kerosene
## 2987 2017-02-12 05:24:00           Kerosene
## 2988 2017-02-12 05:24:00           Kerosene
## 2989 2017-02-12 05:24:00           Kerosene
## 2990 2017-02-12 05:24:00           Kerosene
## 2991 2017-02-12 05:24:00           Kerosene
## 2992 2017-02-12 05:24:00           Kerosene
## 2993 2017-02-12 05:24:00           Kerosene
## 2994 2017-02-12 05:24:00           Kerosene
## 2995 2017-02-12 05:24:00           Kerosene
## 2996 2017-02-12 05:24:00           Kerosene
## 2997 2017-02-12 05:24:00           Kerosene
## 2998 2017-02-12 05:24:00           Kerosene
## 2999 2017-02-12 05:24:00           Kerosene
## 3000 2017-02-12 05:24:00           Kerosene
## 3001 2017-02-12 05:24:00           Kerosene
## 3002 2017-02-12 05:24:00           Kerosene
## 3003 2017-02-12 05:24:00           Kerosene
## 3004 2017-02-12 05:24:00           Kerosene
## 3005 2017-02-12 05:24:00           Kerosene
## 3006 2017-02-12 05:24:00           Kerosene
## 3007 2017-02-12 05:24:00           Kerosene
## 3008 2017-02-12 05:24:00           Kerosene
## 3009 2017-02-12 05:24:00           Kerosene
## 3010 2017-02-12 05:24:00           Kerosene
## 3011 2017-02-12 05:24:00           Kerosene
## 3012 2017-11-16 17:47:00           Kerosene
## 3013 2017-11-16 17:47:00           Kerosene
## 3014 2017-11-16 17:47:00           Kerosene
## 3015 2017-11-16 17:47:00           Kerosene
## 3016 2017-11-16 17:47:00           Kerosene
## 3017 2017-11-16 17:47:00           Kerosene
## 3018 2017-11-16 17:47:00           Kerosene
## 3019 2017-11-16 17:47:00           Kerosene
## 3020 2017-11-16 17:47:00           Kerosene
## 3021 2017-11-16 17:47:00           Kerosene
## 3022 2017-11-16 17:47:00           Kerosene
## 3023 2017-11-16 17:47:00           Kerosene
## 3024 2017-11-16 17:47:00           Kerosene
## 3025 2017-11-16 17:47:00           Kerosene
## 3026 2017-11-16 17:47:00           Kerosene
## 3027 2017-11-16 17:47:00           Kerosene
## 3028 2017-11-16 17:47:00           Kerosene
## 3029 2017-11-16 17:47:00           Kerosene
## 3030 2017-11-16 17:47:00           Kerosene
## 3031 2017-11-16 17:47:00           Kerosene
## 3032 2017-11-16 17:47:00           Kerosene
## 3033 2017-11-16 17:47:00           Kerosene
## 3034 2017-11-16 17:47:00           Kerosene
## 3035 2017-11-16 17:47:00           Kerosene
## 3036 2017-11-16 17:47:00           Kerosene
## 3037 2017-11-16 17:47:00           Kerosene
## 3038 2017-11-16 17:47:00           Kerosene
## 3039 2017-11-16 17:47:00           Kerosene
## 3040 2017-11-16 17:47:00           Kerosene
## 3041 2017-11-16 17:47:00           Kerosene
## 3042 2017-11-16 17:47:00           Kerosene
## 3043 2017-11-16 17:47:00           Kerosene
## 3044 2017-11-15 06:15:00          CleanCook
## 3045 2017-11-15 06:15:00          CleanCook
## 3046 2017-11-15 06:15:00          CleanCook
## 3047 2017-11-15 06:15:00          CleanCook
## 3048 2017-11-15 06:15:00          CleanCook
## 3049 2017-11-15 06:15:00          CleanCook
## 3050 2017-11-15 06:15:00          CleanCook
## 3051 2017-11-15 06:15:00          CleanCook
## 3052 2017-10-15 08:20:00          CleanCook
## 3053 2017-10-15 08:20:00          CleanCook
## 3054 2017-10-15 08:20:00          CleanCook
## 3055 2017-10-15 08:20:00          CleanCook
## 3056 2017-10-07 11:53:00           Kerosene
## 3057 2017-10-07 11:53:00           Kerosene
## 3058 2017-10-07 11:53:00           Kerosene
## 3059 2017-10-07 11:53:00           Kerosene
## 3060 2017-10-07 11:53:00           Kerosene
## 3061 2017-10-07 11:53:00           Kerosene
## 3062 2017-10-07 11:53:00           Kerosene
## 3063 2017-10-07 11:53:00           Kerosene
## 3064 2017-10-07 11:53:00           Kerosene
## 3065 2017-10-07 11:53:00           Kerosene
## 3066 2017-10-07 11:53:00           Kerosene
## 3067 2017-10-07 11:53:00           Kerosene
## 3068 2017-10-07 11:53:00           Kerosene
## 3069 2017-10-07 11:53:00           Kerosene
## 3070 2017-10-07 11:53:00           Kerosene
## 3071 2017-10-07 19:24:00          CleanCook
## 3072 2017-10-07 19:24:00          CleanCook
## 3073 2017-10-07 19:24:00          CleanCook
## 3074 2017-10-07 19:24:00          CleanCook
## 3075 2017-10-07 19:24:00          CleanCook
## 3076 2017-10-07 19:24:00          CleanCook
## 3077 2017-10-07 19:24:00          CleanCook
## 3078 2017-10-07 19:24:00          CleanCook
## 3079 2017-10-07 19:24:00          CleanCook
## 3080 2017-10-07 19:24:00          CleanCook
## 3081 2017-10-07 19:24:00          CleanCook
## 3082 2017-10-07 19:24:00          CleanCook
## 3083 2017-10-07 19:24:00          CleanCook
## 3084 2017-10-07 19:24:00          CleanCook
## 3085 2017-10-07 19:24:00          CleanCook
## 3086 2018-02-04 00:00:00            Ambient
## 3087 2018-02-17 11:45:00           Kerosene
## 3088 2018-02-17 11:45:00           Kerosene
## 3089 2018-01-21 00:09:00            Ambient
## 3090 2018-01-21 08:44:00          CleanCook
## 3091 2018-01-07 00:00:00            Ambient
## 3092 2018-01-19 18:54:00          CleanCook
## 3093 2018-01-08 06:47:00           Kerosene
## 3094 2018-01-08 06:47:00           Kerosene
## 3095 2017-12-10 00:08:00            Ambient
## 3096 2017-11-30 00:08:00            Ambient
## 3097 2017-02-12 02:28:00            Ambient
## 3098 2017-02-12 02:28:00            Ambient
## 3099 2017-02-12 02:28:00            Ambient
## 3100 2017-02-12 02:28:00            Ambient
## 3101 2017-02-12 02:28:00            Ambient
## 3102 2017-02-12 02:28:00            Ambient
## 3103 2017-02-12 02:28:00            Ambient
## 3104 2017-02-12 02:28:00            Ambient
## 3105 2017-02-12 02:28:00            Ambient
## 3106 2017-02-12 02:28:00            Ambient
## 3107 2017-02-12 02:28:00            Ambient
## 3108 2017-02-12 02:28:00            Ambient
## 3109 2017-02-12 02:28:00            Ambient
## 3110 2017-02-12 02:28:00            Ambient
## 3111 2017-02-12 02:28:00            Ambient
## 3112 2017-02-12 02:28:00            Ambient
## 3113 2017-02-12 02:28:00            Ambient
## 3114 2017-02-12 02:28:00            Ambient
## 3115 2017-02-12 02:28:00            Ambient
## 3116 2017-02-12 02:28:00            Ambient
## 3117 2017-02-12 02:28:00            Ambient
## 3118 2017-02-12 02:28:00            Ambient
## 3119 2017-02-12 02:28:00            Ambient
## 3120 2017-02-12 02:28:00            Ambient
## 3121 2017-02-12 02:28:00            Ambient
## 3122 2017-02-12 02:28:00            Ambient
## 3123 2017-02-12 02:28:00            Ambient
## 3124 2017-02-12 02:28:00            Ambient
## 3125 2017-02-12 02:28:00            Ambient
## 3126 2017-02-12 02:28:00            Ambient
## 3127 2017-02-12 02:28:00            Ambient
## 3128 2017-02-12 02:28:00            Ambient
## 3129 2017-02-12 02:28:00            Ambient
## 3130 2017-02-12 02:28:00            Ambient
## 3131 2017-02-12 02:28:00            Ambient
## 3132 2017-02-12 02:28:00            Ambient
## 3133 2017-02-12 02:28:00            Ambient
## 3134 2017-02-12 02:28:00            Ambient
## 3135 2017-02-12 02:28:00            Ambient
## 3136 2017-02-12 02:28:00            Ambient
## 3137 2017-02-12 02:28:00            Ambient
## 3138 2017-02-12 02:28:00            Ambient
## 3139 2017-02-12 02:28:00            Ambient
## 3140 2017-02-12 02:28:00            Ambient
## 3141 2017-02-12 02:28:00            Ambient
## 3142 2017-02-12 02:28:00            Ambient
## 3143 2017-02-12 02:28:00            Ambient
## 3144 2017-02-12 02:28:00            Ambient
## 3145 2017-02-12 07:11:00           Kerosene
## 3146 2017-02-12 07:11:00           Kerosene
## 3147 2017-02-12 07:11:00           Kerosene
## 3148 2017-02-12 07:11:00           Kerosene
## 3149 2017-02-12 07:11:00           Kerosene
## 3150 2017-02-12 07:11:00           Kerosene
## 3151 2017-02-12 07:11:00           Kerosene
## 3152 2017-02-12 07:11:00           Kerosene
## 3153 2017-02-12 07:11:00           Kerosene
## 3154 2017-02-12 07:11:00           Kerosene
## 3155 2017-02-12 07:11:00           Kerosene
## 3156 2017-02-12 07:11:00           Kerosene
## 3157 2017-02-12 07:11:00           Kerosene
## 3158 2017-02-12 07:11:00           Kerosene
## 3159 2017-02-12 07:11:00           Kerosene
## 3160 2017-02-12 07:11:00           Kerosene
## 3161 2017-02-12 07:11:00           Kerosene
## 3162 2017-02-12 07:11:00           Kerosene
## 3163 2017-02-12 07:11:00           Kerosene
## 3164 2017-02-12 07:11:00           Kerosene
## 3165 2017-02-12 07:11:00           Kerosene
## 3166 2017-02-12 07:11:00           Kerosene
## 3167 2017-02-12 07:11:00           Kerosene
## 3168 2017-02-12 07:11:00           Kerosene
## 3169 2017-02-12 07:11:00           Kerosene
## 3170 2017-02-12 07:11:00           Kerosene
## 3171 2017-02-12 07:11:00           Kerosene
## 3172 2017-02-12 07:11:00           Kerosene
## 3173 2017-02-12 07:11:00           Kerosene
## 3174 2017-02-12 07:11:00           Kerosene
## 3175 2017-02-12 07:11:00           Kerosene
## 3176 2017-02-12 07:11:00           Kerosene
## 3177 2017-02-12 07:11:00           Kerosene
## 3178 2017-02-12 07:11:00           Kerosene
## 3179 2017-02-12 07:11:00           Kerosene
## 3180 2017-02-12 07:11:00           Kerosene
## 3181 2017-02-12 07:11:00           Kerosene
## 3182 2017-02-12 07:11:00           Kerosene
## 3183 2017-02-12 07:11:00           Kerosene
## 3184 2017-02-12 07:11:00           Kerosene
## 3185 2017-02-12 07:11:00           Kerosene
## 3186 2017-02-12 07:11:00           Kerosene
## 3187 2017-02-12 07:11:00           Kerosene
## 3188 2017-02-12 07:11:00           Kerosene
## 3189 2017-02-12 07:11:00           Kerosene
## 3190 2017-02-12 07:11:00           Kerosene
## 3191 2017-02-12 07:11:00           Kerosene
## 3192 2017-02-12 05:26:00          CleanCook
## 3193 2017-02-12 05:26:00          CleanCook
## 3194 2017-02-12 05:26:00          CleanCook
## 3195 2017-02-12 05:26:00          CleanCook
## 3196 2017-02-12 05:26:00          CleanCook
## 3197 2017-02-12 05:26:00          CleanCook
## 3198 2017-02-12 05:26:00          CleanCook
## 3199 2017-02-12 05:26:00          CleanCook
## 3200 2017-02-12 05:26:00          CleanCook
## 3201 2017-02-12 05:26:00          CleanCook
## 3202 2017-02-12 05:26:00          CleanCook
## 3203 2017-02-12 05:26:00          CleanCook
## 3204 2017-02-12 05:26:00          CleanCook
## 3205 2017-02-12 05:26:00          CleanCook
## 3206 2017-02-12 05:26:00          CleanCook
## 3207 2017-02-12 05:26:00          CleanCook
## 3208 2017-02-12 05:26:00          CleanCook
## 3209 2017-02-12 05:26:00          CleanCook
## 3210 2017-02-12 05:26:00          CleanCook
## 3211 2017-02-12 05:26:00          CleanCook
## 3212 2017-02-12 05:26:00          CleanCook
## 3213 2017-02-12 05:26:00          CleanCook
## 3214 2017-02-12 05:26:00          CleanCook
## 3215 2017-02-12 05:26:00          CleanCook
## 3216 2017-02-12 05:26:00          CleanCook
## 3217 2017-02-12 05:26:00          CleanCook
## 3218 2017-02-12 05:26:00          CleanCook
## 3219 2017-02-12 05:26:00          CleanCook
## 3220 2017-02-12 05:26:00          CleanCook
## 3221 2017-02-12 05:26:00          CleanCook
## 3222 2017-02-12 05:26:00          CleanCook
## 3223 2017-02-12 05:26:00          CleanCook
## 3224 2017-02-12 05:26:00          CleanCook
## 3225 2017-02-12 05:26:00          CleanCook
## 3226 2017-02-12 05:26:00          CleanCook
## 3227 2017-02-12 05:26:00          CleanCook
## 3228 2017-02-12 05:26:00          CleanCook
## 3229 2017-02-12 05:26:00          CleanCook
## 3230 2017-02-12 05:26:00          CleanCook
## 3231 2017-02-12 05:26:00          CleanCook
## 3232 2017-02-12 05:26:00          CleanCook
## 3233 2017-02-12 05:26:00          CleanCook
## 3234 2017-02-12 05:26:00          CleanCook
## 3235 2017-02-12 05:26:00          CleanCook
## 3236 2017-02-12 05:26:00          CleanCook
## 3237 2017-02-12 05:26:00          CleanCook
## 3238 2017-02-12 05:26:00          CleanCook
## 3239 2017-02-12 05:26:00          CleanCook
## 3240 2017-02-12 05:26:00          CleanCook
## 3241 2017-02-12 05:26:00          CleanCook
## 3242 2017-02-12 05:26:00          CleanCook
## 3243 2017-02-12 05:26:00          CleanCook
## 3244 2017-02-12 05:26:00          CleanCook
## 3245 2017-02-12 05:26:00          CleanCook
## 3246 2017-02-12 05:26:00          CleanCook
## 3247 2017-02-12 05:26:00          CleanCook
## 3248 2017-02-12 05:26:00          CleanCook
## 3249 2017-02-12 05:26:00          CleanCook
## 3250 2017-02-12 05:26:00          CleanCook
## 3251 2017-02-12 05:26:00          CleanCook
## 3252 2017-02-12 05:26:00          CleanCook
## 3253 2017-02-12 05:26:00          CleanCook
## 3254 2017-02-12 05:26:00          CleanCook
## 3255 2017-02-12 05:26:00          CleanCook
## 3256 2017-02-12 05:26:00          CleanCook
## 3257 2017-02-12 05:26:00          CleanCook
## 3258 2017-02-12 05:26:00          CleanCook
## 3259 2017-02-12 05:26:00          CleanCook
## 3260 2017-02-12 05:26:00          CleanCook
## 3261 2017-02-12 05:26:00          CleanCook
## 3262 2017-02-12 05:26:00          CleanCook
## 3263 2017-02-12 05:26:00          CleanCook
## 3264 2017-02-12 05:26:00          CleanCook
## 3265 2017-02-12 05:26:00          CleanCook
## 3266 2017-02-12 05:26:00          CleanCook
## 3267 2017-02-12 05:26:00          CleanCook
## 3268 2017-02-12 05:26:00          CleanCook
## 3269 2017-02-12 05:26:00          CleanCook
## 3270 2017-02-12 05:26:00          CleanCook
## 3271 2017-02-12 05:26:00          CleanCook
## 3272 2017-02-12 05:26:00          CleanCook
## 3273 2017-02-12 05:26:00          CleanCook
## 3274 2017-02-12 05:26:00          CleanCook
## 3275 2017-02-12 05:26:00          CleanCook
## 3276 2017-02-12 05:26:00          CleanCook
## 3277 2017-11-13 00:06:00           Kerosene
## 3278 2017-11-13 00:04:00            Ambient
## 3279 2017-11-15 05:13:00          CleanCook
## 3280 2017-11-15 05:13:00          CleanCook
## 3281 2017-11-15 05:13:00          CleanCook
## 3282 2017-11-15 05:13:00          CleanCook
## 3283 2017-11-15 05:13:00          CleanCook
## 3284 2017-11-15 05:13:00          CleanCook
## 3285 2017-11-15 05:13:00          CleanCook
## 3286 2017-11-15 05:13:00          CleanCook
## 3287 2017-11-15 05:13:00          CleanCook
## 3288 2017-11-15 05:13:00          CleanCook
## 3289 2017-11-12 00:06:00           Kerosene
## 3290 2017-11-12 00:04:00            Ambient
## 3291 2017-11-12 00:03:00          CleanCook
## 3292 2017-10-29 00:06:00            Ambient
## 3293 2017-10-15 00:08:00            Ambient
## 3294 2017-02-12 00:38:00           Kerosene
## 3295 2017-02-12 00:38:00           Kerosene
## 3296 2017-02-12 00:38:00           Kerosene
## 3297 2017-02-12 00:38:00           Kerosene
## 3298 2017-02-12 00:38:00           Kerosene
## 3299 2017-02-12 00:38:00           Kerosene
## 3300 2017-02-12 00:38:00           Kerosene
## 3301 2017-02-12 00:38:00           Kerosene
## 3302 2017-02-12 00:38:00           Kerosene
## 3303 2017-02-12 00:38:00           Kerosene
## 3304 2017-02-12 00:38:00           Kerosene
## 3305 2017-02-12 00:38:00           Kerosene
## 3306 2017-02-12 00:38:00           Kerosene
## 3307 2017-02-12 00:38:00           Kerosene
## 3308 2017-02-12 00:38:00           Kerosene
## 3309 2017-02-12 00:38:00           Kerosene
## 3310 2017-02-12 00:38:00           Kerosene
## 3311 2017-02-12 00:38:00           Kerosene
## 3312 2017-02-12 00:38:00           Kerosene
## 3313 2017-02-12 00:38:00           Kerosene
## 3314 2017-02-12 00:38:00           Kerosene
## 3315 2017-02-12 00:38:00           Kerosene
## 3316 2017-02-12 00:38:00           Kerosene
## 3317 2017-02-12 00:38:00           Kerosene
## 3318 2017-02-12 00:38:00           Kerosene
## 3319 2017-02-12 00:38:00           Kerosene
## 3320 2017-02-12 00:38:00           Kerosene
## 3321 2017-02-12 00:38:00           Kerosene
## 3322 2017-02-12 00:38:00           Kerosene
## 3323 2017-02-12 00:38:00           Kerosene
## 3324 2017-02-12 00:38:00           Kerosene
## 3325 2017-02-12 00:38:00           Kerosene
## 3326 2017-02-12 00:38:00           Kerosene
## 3327 2017-02-12 00:38:00           Kerosene
## 3328 2017-02-12 00:38:00           Kerosene
## 3329 2017-02-12 00:38:00           Kerosene
## 3330 2017-02-12 00:38:00           Kerosene
## 3331 2017-02-12 00:38:00           Kerosene
## 3332 2017-02-12 00:38:00           Kerosene
## 3333 2017-02-12 00:38:00           Kerosene
## 3334 2017-02-12 00:38:00           Kerosene
## 3335 2017-02-12 00:38:00           Kerosene
## 3336 2017-02-12 00:38:00           Kerosene
## 3337 2017-02-12 00:38:00           Kerosene
## 3338 2017-02-12 00:38:00           Kerosene
## 3339 2017-02-12 00:38:00           Kerosene
## 3340 2017-02-12 00:38:00           Kerosene
## 3341 2017-02-12 00:38:00           Kerosene
## 3342 2017-02-12 00:38:00           Kerosene
## 3343 2017-02-12 00:38:00           Kerosene
## 3344 2017-02-12 00:38:00           Kerosene
## 3345 2017-02-12 00:38:00           Kerosene
## 3346 2017-02-12 00:38:00           Kerosene
## 3347 2017-02-12 00:38:00           Kerosene
## 3348 2017-02-12 00:38:00           Kerosene
## 3349 2017-02-12 00:38:00           Kerosene
## 3350 2017-02-12 00:38:00           Kerosene
## 3351 2017-02-12 00:38:00           Kerosene
## 3352 2017-02-12 00:38:00           Kerosene
## 3353 2017-02-12 00:38:00           Kerosene
## 3354 2017-02-12 00:38:00           Kerosene
## 3355 2017-02-12 00:38:00           Kerosene
## 3356 2017-02-12 00:38:00           Kerosene
## 3357 2017-02-12 00:38:00           Kerosene
## 3358 2017-02-12 00:38:00           Kerosene
## 3359 2017-02-12 00:38:00           Kerosene
## 3360 2017-02-12 00:38:00           Kerosene
## 3361 2017-02-12 00:38:00           Kerosene
## 3362 2017-02-12 00:38:00           Kerosene
## 3363 2017-02-12 00:38:00           Kerosene
## 3364 2017-02-12 00:38:00           Kerosene
## 3365 2017-02-12 00:38:00           Kerosene
## 3366 2017-02-12 00:38:00           Kerosene
## 3367 2017-02-12 00:38:00           Kerosene
## 3368 2017-02-12 00:38:00           Kerosene
## 3369 2017-02-12 00:38:00           Kerosene
## 3370 2017-02-12 00:38:00           Kerosene
## 3371 2017-02-12 00:38:00           Kerosene
## 3372 2017-02-12 00:38:00           Kerosene
## 3373 2017-02-12 00:38:00           Kerosene
## 3374 2017-02-12 00:38:00           Kerosene
## 3375 2017-02-12 00:38:00           Kerosene
## 3376 2017-02-12 00:38:00           Kerosene
## 3377 2017-02-12 00:38:00           Kerosene
## 3378 2017-02-12 00:38:00           Kerosene
## 3379 2017-02-12 00:38:00           Kerosene
## 3380 2017-02-12 03:56:00          CleanCook
## 3381 2017-02-12 03:56:00          CleanCook
## 3382 2017-02-12 03:56:00          CleanCook
## 3383 2017-02-12 03:56:00          CleanCook
## 3384 2017-02-12 03:56:00          CleanCook
## 3385 2017-02-12 03:56:00          CleanCook
## 3386 2017-02-12 03:56:00          CleanCook
## 3387 2017-02-12 03:56:00          CleanCook
## 3388 2017-02-12 03:56:00          CleanCook
## 3389 2017-02-12 03:56:00          CleanCook
## 3390 2017-02-12 03:56:00          CleanCook
## 3391 2017-02-12 03:56:00          CleanCook
## 3392 2017-02-12 03:56:00          CleanCook
## 3393 2017-02-12 03:56:00          CleanCook
## 3394 2017-02-12 03:56:00          CleanCook
## 3395 2017-02-12 03:56:00          CleanCook
## 3396 2017-02-12 03:56:00          CleanCook
## 3397 2017-02-12 03:56:00          CleanCook
## 3398 2017-02-12 03:56:00          CleanCook
## 3399 2017-02-12 03:56:00          CleanCook
## 3400 2017-02-12 03:56:00          CleanCook
## 3401 2017-02-12 03:56:00          CleanCook
## 3402 2017-02-12 03:56:00          CleanCook
## 3403 2017-02-12 03:56:00          CleanCook
## 3404 2017-02-12 03:56:00          CleanCook
## 3405 2017-02-12 03:56:00          CleanCook
## 3406 2017-02-12 03:56:00          CleanCook
## 3407 2017-02-12 03:56:00          CleanCook
## 3408 2017-02-12 03:56:00          CleanCook
## 3409 2017-02-12 03:56:00          CleanCook
## 3410 2017-02-12 03:56:00          CleanCook
## 3411 2017-02-12 03:56:00          CleanCook
## 3412 2017-02-12 03:56:00          CleanCook
## 3413 2017-02-12 03:56:00          CleanCook
## 3414 2017-02-12 03:56:00          CleanCook
## 3415 2017-02-12 03:56:00          CleanCook
## 3416 2017-02-12 03:56:00          CleanCook
## 3417 2017-02-12 03:56:00          CleanCook
## 3418 2017-02-12 03:56:00          CleanCook
## 3419 2017-02-12 03:56:00          CleanCook
## 3420 2017-02-12 03:56:00          CleanCook
## 3421 2017-02-12 03:56:00          CleanCook
## 3422 2017-02-12 03:56:00          CleanCook
## 3423 2017-02-12 03:56:00          CleanCook
## 3424 2017-02-12 03:56:00          CleanCook
## 3425 2017-02-12 03:56:00          CleanCook
## 3426 2017-02-12 03:56:00          CleanCook
## 3427 2017-02-12 03:56:00          CleanCook
## 3428 2017-02-12 03:56:00          CleanCook
## 3429 2017-02-12 03:56:00          CleanCook
## 3430 2017-02-12 03:56:00          CleanCook
## 3431 2017-02-12 03:56:00          CleanCook
## 3432 2017-02-12 03:56:00          CleanCook
## 3433 2017-02-12 03:56:00          CleanCook
## 3434 2017-02-12 03:56:00          CleanCook
## 3435 2017-02-12 03:56:00          CleanCook
## 3436 2017-02-12 03:56:00          CleanCook
## 3437 2017-02-12 03:56:00          CleanCook
## 3438 2017-02-12 03:56:00          CleanCook
## 3439 2017-02-12 03:56:00          CleanCook
## 3440 2017-02-12 03:56:00          CleanCook
## 3441 2017-02-12 03:56:00          CleanCook
## 3442 2017-02-12 03:56:00          CleanCook
## 3443 2017-02-12 03:56:00          CleanCook
## 3444 2017-02-12 03:56:00          CleanCook
## 3445 2017-02-12 03:56:00          CleanCook
## 3446 2017-02-12 03:56:00          CleanCook
## 3447 2017-02-12 03:56:00          CleanCook
## 3448 2017-02-12 03:56:00          CleanCook
## 3449 2017-02-12 03:56:00          CleanCook
## 3450 2017-02-12 03:56:00          CleanCook
## 3451 2017-02-12 03:56:00          CleanCook
## 3452 2017-02-12 03:56:00          CleanCook
## 3453 2017-02-12 03:56:00          CleanCook
## 3454 2017-02-12 03:56:00          CleanCook
## 3455 2017-02-12 03:56:00          CleanCook
## 3456 2017-02-12 03:56:00          CleanCook
## 3457 2017-02-12 03:56:00          CleanCook
## 3458 2017-02-12 03:56:00          CleanCook
## 3459 2017-02-12 03:56:00          CleanCook
## 3460 2017-02-12 03:56:00          CleanCook
## 3461 2017-02-12 03:56:00          CleanCook
## 3462 2017-02-12 03:56:00          CleanCook
## 3463 2017-02-12 03:56:00          CleanCook
## 3464 2017-02-12 03:56:00          CleanCook
## 3465 2017-02-12 03:56:00          CleanCook
## 3466 2017-02-12 03:56:00          CleanCook
## 3467 2017-02-12 03:56:00          CleanCook
## 3468 2017-02-12 03:56:00          CleanCook
## 3469 2017-02-12 03:56:00          CleanCook
## 3470 2017-02-12 03:56:00          CleanCook
## 3471 2017-02-12 03:56:00          CleanCook
## 3472 2017-02-12 03:56:00          CleanCook
## 3473 2017-02-12 03:56:00          CleanCook
## 3474 2017-02-12 03:56:00          CleanCook
## 3475 2017-02-12 03:56:00          CleanCook
## 3476 2017-11-13 10:15:00           Kerosene
## 3477 2017-11-13 10:15:00           Kerosene
## 3478 2017-11-13 10:15:00           Kerosene
## 3479 2017-11-13 10:15:00           Kerosene
## 3480 2017-11-13 10:15:00           Kerosene
## 3481 2017-11-13 10:15:00           Kerosene
## 3482 2017-11-13 10:15:00           Kerosene
## 3483 2017-11-13 10:15:00           Kerosene
## 3484 2017-11-13 10:15:00           Kerosene
## 3485 2017-11-13 10:15:00           Kerosene
## 3486 2017-11-13 10:15:00           Kerosene
## 3487 2017-11-13 10:15:00           Kerosene
## 3488 2017-11-13 10:15:00           Kerosene
## 3489 2017-11-13 10:15:00           Kerosene
## 3490 2017-11-13 10:15:00           Kerosene
## 3491 2017-11-13 10:15:00           Kerosene
## 3492 2017-11-13 10:15:00           Kerosene
## 3493 2017-11-13 10:15:00           Kerosene
## 3494 2017-11-13 10:15:00           Kerosene
## 3495 2017-11-13 10:15:00           Kerosene
## 3496 2017-11-13 10:15:00           Kerosene
## 3497 2017-11-13 10:15:00           Kerosene
## 3498 2017-11-13 10:15:00           Kerosene
## 3499 2017-11-17 17:11:00          CleanCook
## 3500 2017-11-17 17:11:00          CleanCook
## 3501 2017-11-17 17:11:00          CleanCook
## 3502 2017-11-17 17:11:00          CleanCook
## 3503 2017-11-17 17:11:00          CleanCook
## 3504 2017-11-17 17:11:00          CleanCook
## 3505 2017-11-17 17:11:00          CleanCook
## 3506 2017-11-17 17:11:00          CleanCook
## 3507 2017-11-17 17:11:00          CleanCook
## 3508 2017-11-12 00:01:00          CleanCook
## 3509 2017-11-12 07:15:00           Kerosene
## 3510 2017-11-12 07:15:00           Kerosene
## 3511 2017-10-31 08:47:00          CleanCook
## 3512 2018-02-04 00:01:00          CleanCook
## 3513 2018-01-21 20:18:00           Kerosene
## 3514 2018-01-21 20:18:00           Kerosene
## 3515 2018-01-21 20:18:00           Kerosene
## 3516 2018-01-21 20:18:00           Kerosene
## 3517 2018-01-21 20:18:00           Kerosene
## 3518 2018-01-21 20:18:00           Kerosene
## 3519 2018-01-21 20:18:00           Kerosene
## 3520 2018-01-21 20:18:00           Kerosene
## 3521 2018-01-21 20:18:00           Kerosene
## 3522 2018-01-21 20:18:00           Kerosene
## 3523 2018-01-21 20:18:00           Kerosene
## 3524 2018-01-21 20:18:00           Kerosene
## 3525 2018-01-21 20:18:00           Kerosene
## 3526 2018-01-21 20:18:00           Kerosene
## 3527 2018-01-21 20:18:00           Kerosene
## 3528 2018-01-21 20:18:00           Kerosene
## 3529 2018-01-21 20:18:00           Kerosene
## 3530 2018-01-21 20:18:00           Kerosene
## 3531 2018-01-21 20:18:00           Kerosene
## 3532 2018-01-21 20:18:00           Kerosene
## 3533 2018-01-21 20:18:00           Kerosene
## 3534 2018-01-21 20:18:00           Kerosene
## 3535 2018-01-21 20:18:00           Kerosene
## 3536 2018-01-21 20:18:00           Kerosene
## 3537 2018-01-21 20:18:00           Kerosene
## 3538 2018-01-21 20:18:00           Kerosene
## 3539 2018-01-21 20:18:00           Kerosene
## 3540 2018-01-21 20:18:00           Kerosene
## 3541 2018-01-21 20:18:00           Kerosene
## 3542 2018-01-21 20:18:00           Kerosene
## 3543 2018-01-21 20:18:00           Kerosene
## 3544 2018-01-21 20:18:00           Kerosene
## 3545 2018-01-21 20:18:00           Kerosene
## 3546 2018-01-21 20:18:00           Kerosene
## 3547 2018-01-21 20:18:00           Kerosene
## 3548 2018-01-21 20:18:00           Kerosene
## 3549 2018-01-21 20:18:00           Kerosene
## 3550 2018-01-21 20:18:00           Kerosene
## 3551 2018-01-21 20:18:00           Kerosene
## 3552 2018-01-21 08:01:00          CleanCook
## 3553 2018-01-21 08:01:00          CleanCook
## 3554 2018-01-21 08:01:00          CleanCook
## 3555 2018-01-21 08:01:00          CleanCook
## 3556 2018-01-21 08:01:00          CleanCook
## 3557 2018-01-21 08:01:00          CleanCook
## 3558 2018-01-21 08:01:00          CleanCook
## 3559 2018-01-21 08:01:00          CleanCook
## 3560 2018-01-21 08:01:00          CleanCook
## 3561 2018-01-21 08:01:00          CleanCook
## 3562 2018-01-21 08:01:00          CleanCook
## 3563 2018-01-21 08:01:00          CleanCook
## 3564 2018-01-21 08:01:00          CleanCook
## 3565 2018-01-21 08:01:00          CleanCook
## 3566 2018-01-21 08:01:00          CleanCook
## 3567 2018-01-21 08:01:00          CleanCook
## 3568 2018-01-21 08:01:00          CleanCook
## 3569 2018-01-21 08:01:00          CleanCook
## 3570 2018-01-21 08:01:00          CleanCook
## 3571 2018-01-21 08:01:00          CleanCook
## 3572 2018-01-21 08:01:00          CleanCook
## 3573 2018-01-21 08:01:00          CleanCook
## 3574 2018-01-21 08:01:00          CleanCook
## 3575 2018-01-21 08:01:00          CleanCook
## 3576 2018-01-21 08:01:00          CleanCook
## 3577 2018-01-21 08:01:00          CleanCook
## 3578 2018-01-21 08:01:00          CleanCook
## 3579 2017-12-02 17:47:00          CleanCook
## 3580 2017-12-02 17:47:00          CleanCook
## 3581 2017-12-02 17:47:00          CleanCook
## 3582 2017-12-02 17:47:00          CleanCook
## 3583 2017-12-02 17:47:00          CleanCook
## 3584 2017-12-02 17:47:00          CleanCook
## 3585 2017-12-02 17:47:00          CleanCook
## 3586 2017-12-02 17:47:00          CleanCook
## 3587 2017-12-02 17:47:00          CleanCook
## 3588 2017-12-02 17:47:00          CleanCook
## 3589 2017-12-02 17:47:00          CleanCook
## 3590 2017-12-02 17:47:00          CleanCook
## 3591 2017-12-02 17:47:00          CleanCook
## 3592 2017-12-02 17:47:00          CleanCook
## 3593 2017-12-02 17:47:00          CleanCook
## 3594 2017-12-02 17:47:00          CleanCook
## 3595 2017-12-02 17:47:00          CleanCook
## 3596 2017-12-02 17:47:00          CleanCook
## 3597 2017-12-02 17:47:00          CleanCook
## 3598 2017-12-02 17:47:00          CleanCook
## 3599 2017-12-02 17:47:00          CleanCook
## 3600 2017-12-02 17:47:00          CleanCook
## 3601 2017-12-02 17:47:00          CleanCook
## 3602 2017-12-02 17:47:00          CleanCook
## 3603 2017-12-02 17:47:00          CleanCook
## 3604 2017-12-02 17:47:00          CleanCook
## 3605 2017-12-02 17:47:00          CleanCook
## 3606 2017-12-02 17:47:00          CleanCook
## 3607 2017-12-02 17:47:00          CleanCook
## 3608 2017-12-02 17:47:00          CleanCook
## 3609 2017-12-02 17:47:00          CleanCook
## 3610 2017-12-02 17:47:00          CleanCook
## 3611 2017-12-02 17:47:00          CleanCook
## 3612 2017-12-02 17:47:00          CleanCook
## 3613 2017-12-02 17:47:00          CleanCook
## 3614 2017-11-26 08:49:00           Kerosene
## 3615 2017-11-26 08:49:00           Kerosene
## 3616 2017-11-26 08:49:00           Kerosene
## 3617 2017-11-26 08:49:00           Kerosene
## 3618 2017-11-26 08:49:00           Kerosene
## 3619 2017-11-26 08:49:00           Kerosene
## 3620 2017-11-26 08:49:00           Kerosene
## 3621 2017-11-26 08:49:00           Kerosene
## 3622 2017-11-26 08:49:00           Kerosene
## 3623 2017-11-26 08:49:00           Kerosene
## 3624 2017-11-26 08:49:00           Kerosene
## 3625 2017-11-26 08:49:00           Kerosene
## 3626 2017-11-26 08:49:00           Kerosene
## 3627 2017-11-26 08:49:00           Kerosene
## 3628 2017-11-26 08:49:00           Kerosene
## 3629 2017-11-26 08:49:00           Kerosene
## 3630 2017-11-26 08:49:00           Kerosene
## 3631 2017-11-26 08:49:00           Kerosene
## 3632 2017-11-26 08:49:00           Kerosene
## 3633 2017-11-26 08:49:00           Kerosene
## 3634 2017-11-26 08:49:00           Kerosene
## 3635 2017-11-26 08:49:00           Kerosene
## 3636 2017-11-26 08:49:00           Kerosene
## 3637 2017-11-26 08:49:00           Kerosene
## 3638 2017-11-26 08:49:00           Kerosene
## 3639 2017-11-26 08:49:00           Kerosene
## 3640 2017-11-26 08:49:00           Kerosene
## 3641 2017-11-26 08:49:00           Kerosene
## 3642 2017-11-26 08:49:00           Kerosene
## 3643 2017-11-19 09:24:00           Kerosene
## 3644 2017-11-19 09:24:00           Kerosene
## 3645 2017-11-19 09:24:00           Kerosene
## 3646 2017-11-19 09:24:00           Kerosene
## 3647 2017-11-19 09:24:00           Kerosene
## 3648 2017-11-19 09:24:00           Kerosene
## 3649 2017-11-19 09:24:00           Kerosene
## 3650 2017-11-19 09:24:00           Kerosene
## 3651 2017-11-19 09:24:00           Kerosene
## 3652 2017-11-19 09:24:00           Kerosene
## 3653 2017-11-19 09:24:00           Kerosene
## 3654 2017-11-19 09:24:00           Kerosene
## 3655 2017-11-19 09:24:00           Kerosene
## 3656 2017-11-19 09:24:00           Kerosene
## 3657 2017-11-19 10:16:00          CleanCook
## 3658 2017-11-19 10:16:00          CleanCook
## 3659 2017-11-19 10:16:00          CleanCook
## 3660 2017-11-19 10:16:00          CleanCook
## 3661 2017-11-19 10:16:00          CleanCook
## 3662 2017-11-19 10:16:00          CleanCook
## 3663 2017-11-19 10:16:00          CleanCook
## 3664 2017-11-19 10:16:00          CleanCook
## 3665 2017-10-14 00:05:00          CleanCook
## 3666 2017-10-14 06:51:00           Kerosene
## 3667 2017-10-14 06:51:00           Kerosene
## 3668 2017-10-14 06:51:00           Kerosene
## 3669 2017-10-14 06:51:00           Kerosene
## 3670 2017-10-14 06:51:00           Kerosene
## 3671 2017-10-14 06:51:00           Kerosene
## 3672 2017-10-14 06:51:00           Kerosene
## 3673 2017-10-14 06:51:00           Kerosene
## 3674 2017-10-14 06:51:00           Kerosene
## 3675 2017-10-14 06:51:00           Kerosene
## 3676 2017-10-14 06:51:00           Kerosene
## 3677 2017-10-14 06:51:00           Kerosene
## 3678 2017-10-14 06:51:00           Kerosene
## 3679 2017-10-14 06:51:00           Kerosene
## 3680 2017-10-14 06:51:00           Kerosene
## 3681 2017-10-14 06:51:00           Kerosene
## 3682 2017-10-14 06:51:00           Kerosene
## 3683 2017-10-14 06:51:00           Kerosene
## 3684 2017-10-14 06:51:00           Kerosene
## 3685 2017-10-14 06:51:00           Kerosene
## 3686 2017-10-14 06:51:00           Kerosene
## 3687 2017-10-14 06:51:00           Kerosene
## 3688 2017-10-14 06:51:00           Kerosene
## 3689 2017-10-14 06:51:00           Kerosene
## 3690 2017-10-14 06:51:00           Kerosene
## 3691 2017-10-14 06:51:00           Kerosene
## 3692 2017-10-14 06:51:00           Kerosene
## 3693 2017-10-14 06:51:00           Kerosene
## 3694 2017-10-14 06:51:00           Kerosene
## 3695 2017-10-14 06:51:00           Kerosene
## 3696 2017-10-14 06:51:00           Kerosene
## 3697 2017-10-14 06:51:00           Kerosene
## 3698 2017-10-14 06:51:00           Kerosene
## 3699 2017-10-14 06:51:00           Kerosene
## 3700 2017-10-14 06:51:00           Kerosene
## 3701 2017-10-14 06:51:00           Kerosene
## 3702 2017-10-14 06:51:00           Kerosene
## 3703 2017-10-14 06:51:00           Kerosene
## 3704 2017-10-14 06:51:00           Kerosene
## 3705 2017-10-14 06:51:00           Kerosene
## 3706 2017-10-14 06:51:00           Kerosene
## 3707 2017-10-06 06:53:00           Kerosene
## 3708 2017-10-06 06:53:00           Kerosene
## 3709 2017-10-06 06:53:00           Kerosene
## 3710 2017-10-06 06:53:00           Kerosene
## 3711 2017-10-06 06:53:00           Kerosene
## 3712 2017-10-06 06:53:00           Kerosene
## 3713 2017-10-06 06:53:00           Kerosene
## 3714 2017-10-06 06:53:00           Kerosene
## 3715 2017-10-06 06:53:00           Kerosene
## 3716 2017-10-06 06:53:00           Kerosene
## 3717 2017-10-06 06:53:00           Kerosene
## 3718 2017-10-06 06:53:00           Kerosene
## 3719 2017-10-06 06:53:00           Kerosene
## 3720 2017-10-06 06:53:00           Kerosene
## 3721 2017-10-06 06:53:00           Kerosene
## 3722 2017-10-06 06:53:00           Kerosene
## 3723 2017-10-06 17:04:00          CleanCook
## 3724 2017-10-06 17:04:00          CleanCook
## 3725 2017-10-06 17:04:00          CleanCook
## 3726 2017-10-06 17:04:00          CleanCook
## 3727 2017-10-06 17:04:00          CleanCook
## 3728 2017-10-06 17:04:00          CleanCook
## 3729 2017-10-06 17:04:00          CleanCook
## 3730 2017-10-06 17:04:00          CleanCook
## 3731 2017-10-06 17:04:00          CleanCook
## 3732 2017-10-06 17:04:00          CleanCook
## 3733 2018-02-17 12:20:00          CleanCook
## 3734 2018-01-30 21:23:00          CleanCook
## 3735 2018-01-30 21:23:00          CleanCook
## 3736 2017-10-10 07:36:00          CleanCook
## 3737 2017-10-10 07:36:00          CleanCook
## 3738 2017-02-11 08:23:00           Kerosene
## 3739 2017-02-11 08:23:00           Kerosene
## 3740 2017-02-11 08:23:00           Kerosene
## 3741 2017-02-11 08:23:00           Kerosene
## 3742 2017-02-11 08:23:00           Kerosene
## 3743 2017-02-11 08:23:00           Kerosene
## 3744 2017-02-11 08:23:00           Kerosene
## 3745 2017-02-11 08:23:00           Kerosene
## 3746 2017-02-11 08:23:00           Kerosene
## 3747 2017-02-11 08:23:00           Kerosene
## 3748 2017-02-11 08:23:00           Kerosene
## 3749 2017-02-11 08:23:00           Kerosene
## 3750 2017-02-11 08:23:00           Kerosene
## 3751 2017-02-11 08:23:00           Kerosene
## 3752 2017-02-11 08:23:00           Kerosene
## 3753 2017-02-11 08:23:00           Kerosene
## 3754 2017-02-11 08:23:00           Kerosene
## 3755 2017-02-11 08:23:00           Kerosene
## 3756 2017-02-11 08:23:00           Kerosene
## 3757 2017-02-11 08:23:00           Kerosene
## 3758 2017-02-11 08:23:00           Kerosene
## 3759 2017-02-11 08:23:00           Kerosene
## 3760 2017-02-11 08:23:00           Kerosene
## 3761 2017-02-11 08:23:00           Kerosene
## 3762 2017-02-11 08:23:00           Kerosene
## 3763 2017-02-11 08:23:00           Kerosene
## 3764 2017-02-11 08:23:00           Kerosene
## 3765 2017-02-11 08:23:00           Kerosene
## 3766 2017-02-11 08:23:00           Kerosene
## 3767 2017-02-11 08:23:00           Kerosene
## 3768 2017-02-11 08:23:00           Kerosene
## 3769 2017-02-11 08:23:00           Kerosene
## 3770 2017-02-11 08:23:00           Kerosene
## 3771 2017-02-11 08:23:00           Kerosene
## 3772 2017-02-11 08:23:00           Kerosene
## 3773 2017-02-11 08:23:00           Kerosene
## 3774 2017-02-11 08:23:00           Kerosene
## 3775 2017-02-11 08:23:00           Kerosene
## 3776 2017-02-11 08:23:00           Kerosene
## 3777 2017-02-11 08:23:00           Kerosene
## 3778 2017-02-11 00:20:00          CleanCook
## 3779 2017-02-11 00:20:00          CleanCook
## 3780 2017-02-11 00:20:00          CleanCook
## 3781 2017-02-11 00:20:00          CleanCook
## 3782 2017-02-11 00:20:00          CleanCook
## 3783 2017-02-11 00:20:00          CleanCook
## 3784 2017-02-11 00:20:00          CleanCook
## 3785 2017-02-11 00:20:00          CleanCook
## 3786 2017-02-11 00:20:00          CleanCook
## 3787 2017-02-11 00:20:00          CleanCook
## 3788 2017-02-11 00:20:00          CleanCook
## 3789 2017-02-11 00:20:00          CleanCook
## 3790 2017-02-11 00:20:00          CleanCook
## 3791 2017-02-11 00:20:00          CleanCook
## 3792 2017-02-11 00:20:00          CleanCook
## 3793 2017-02-11 00:20:00          CleanCook
## 3794 2017-02-11 00:20:00          CleanCook
## 3795 2017-02-11 00:20:00          CleanCook
## 3796 2017-02-11 00:20:00          CleanCook
## 3797 2017-02-11 00:20:00          CleanCook
## 3798 2017-02-11 00:20:00          CleanCook
## 3799 2017-02-11 00:20:00          CleanCook
## 3800 2017-02-11 00:20:00          CleanCook
## 3801 2017-02-11 00:20:00          CleanCook
## 3802 2017-02-11 00:20:00          CleanCook
## 3803 2017-02-11 00:20:00          CleanCook
## 3804 2017-02-11 00:20:00          CleanCook
## 3805 2017-02-11 00:20:00          CleanCook
## 3806 2017-02-11 00:20:00          CleanCook
## 3807 2017-02-11 00:20:00          CleanCook
## 3808 2017-02-11 00:20:00          CleanCook
## 3809 2017-02-11 00:20:00          CleanCook
## 3810 2017-02-11 00:20:00          CleanCook
## 3811 2017-02-11 00:20:00          CleanCook
## 3812 2017-02-11 00:20:00          CleanCook
## 3813 2017-02-11 00:20:00          CleanCook
## 3814 2017-02-11 00:20:00          CleanCook
## 3815 2017-02-11 00:20:00          CleanCook
## 3816 2017-02-11 00:20:00          CleanCook
## 3817 2017-02-11 00:20:00          CleanCook
## 3818 2017-02-11 00:20:00          CleanCook
## 3819 2017-02-11 00:20:00          CleanCook
## 3820 2017-02-11 00:20:00          CleanCook
## 3821 2017-02-11 00:20:00          CleanCook
## 3822 2017-02-11 00:20:00          CleanCook
## 3823 2018-02-05 13:25:00           Kerosene
## 3824 2018-01-13 20:20:00          CleanCook
## 3825 2018-01-13 20:20:00          CleanCook
## 3826 2018-01-13 20:20:00          CleanCook
## 3827 2018-01-13 20:20:00          CleanCook
## 3828 2018-01-13 20:20:00          CleanCook
## 3829 2018-01-13 20:20:00          CleanCook
## 3830 2018-02-04 00:07:00            Ambient
## 3831 2018-01-21 00:00:00            Ambient
## 3832 2018-01-07 00:08:00            Ambient
## 3833 2017-12-10 00:08:00            Ambient
## 3834 2017-11-29 09:17:00            Ambient
## 3835 2017-11-29 09:17:00            Ambient
## 3836 2017-11-29 09:17:00            Ambient
## 3837 2017-11-29 09:17:00            Ambient
## 3838 2017-11-29 09:17:00            Ambient
## 3839 2017-11-19 00:06:00            Ambient
## 3840 2017-11-24 19:22:00           Kerosene
## 3841 2017-11-08 16:16:00            Ambient
## 3842 2017-11-08 16:16:00            Ambient
## 3843 2017-11-08 16:16:00            Ambient
## 3844 2018-02-07 14:16:00            Ambient
## 3845 2018-02-07 14:16:00            Ambient
## 3846 2018-02-07 14:16:00            Ambient
## 3847 2018-01-10 14:16:00            Ambient
## 3848 2018-01-10 14:16:00            Ambient
## 3849 2017-12-09 13:56:00            Ambient
## 3850 2017-12-09 13:56:00            Ambient
## 3851 2017-12-09 13:56:00            Ambient
## 3852 2017-12-09 13:56:00            Ambient
## 3853 2017-11-26 00:00:00            Ambient
## 3854 2017-11-15 10:23:00            Ambient
## 3855 2017-11-15 10:23:00            Ambient
## 3856 2017-11-15 10:23:00            Ambient
## 3857 2017-11-07 12:25:00            Ambient
## 3858 2017-11-07 12:25:00            Ambient
## 3859 2017-11-25 12:29:00           Kerosene
## 3860 2017-02-12 14:06:00          CleanCook
## 3861 2017-02-12 14:06:00          CleanCook
## 3862 2017-02-12 14:06:00          CleanCook
## 3863 2017-02-12 14:06:00          CleanCook
## 3864 2017-02-12 14:06:00          CleanCook
## 3865 2017-02-12 14:06:00          CleanCook
## 3866 2017-02-12 14:06:00          CleanCook
## 3867 2017-02-12 14:06:00          CleanCook
## 3868 2017-02-12 14:06:00          CleanCook
## 3869 2017-02-12 14:06:00          CleanCook
## 3870 2017-02-12 14:06:00          CleanCook
## 3871 2017-02-12 14:06:00          CleanCook
## 3872 2017-02-12 14:06:00          CleanCook
## 3873 2017-02-12 14:06:00          CleanCook
## 3874 2017-02-12 14:06:00          CleanCook
## 3875 2017-02-12 14:06:00          CleanCook
## 3876 2017-02-12 14:06:00          CleanCook
## 3877 2017-02-12 14:06:00          CleanCook
## 3878 2017-02-12 14:06:00          CleanCook
## 3879 2017-02-12 14:06:00          CleanCook
## 3880 2017-02-12 14:06:00          CleanCook
## 3881 2017-02-12 14:06:00          CleanCook
## 3882 2017-02-12 14:06:00          CleanCook
## 3883 2017-02-12 14:06:00          CleanCook
## 3884 2017-02-12 14:06:00          CleanCook
## 3885 2017-02-12 14:06:00          CleanCook
## 3886 2017-02-12 14:06:00          CleanCook
## 3887 2017-02-12 14:06:00          CleanCook
## 3888 2017-02-12 14:06:00          CleanCook
## 3889 2017-02-12 14:06:00          CleanCook
## 3890 2017-02-12 14:06:00          CleanCook
## 3891 2017-02-12 14:06:00          CleanCook
## 3892 2017-02-12 14:06:00          CleanCook
## 3893 2017-02-12 14:06:00          CleanCook
## 3894 2017-02-12 14:06:00          CleanCook
## 3895 2017-02-12 14:06:00          CleanCook
## 3896 2017-02-12 14:06:00          CleanCook
## 3897 2017-02-12 14:06:00          CleanCook
## 3898 2017-02-12 14:06:00          CleanCook
## 3899 2017-02-12 00:48:00           Kerosene
## 3900 2017-02-12 00:48:00           Kerosene
## 3901 2017-02-12 00:48:00           Kerosene
## 3902 2017-02-12 00:48:00           Kerosene
## 3903 2017-02-12 00:48:00           Kerosene
## 3904 2017-02-12 00:48:00           Kerosene
## 3905 2017-02-12 00:48:00           Kerosene
## 3906 2017-02-12 00:48:00           Kerosene
## 3907 2017-02-12 00:48:00           Kerosene
## 3908 2017-02-12 00:48:00           Kerosene
## 3909 2017-02-12 00:48:00           Kerosene
## 3910 2017-02-12 00:48:00           Kerosene
## 3911 2017-02-12 00:48:00           Kerosene
## 3912 2017-02-12 00:48:00           Kerosene
## 3913 2017-02-12 00:48:00           Kerosene
## 3914 2017-02-12 00:48:00           Kerosene
## 3915 2017-02-12 00:48:00           Kerosene
## 3916 2017-02-12 00:48:00           Kerosene
## 3917 2017-02-12 00:48:00           Kerosene
## 3918 2017-02-12 00:48:00           Kerosene
## 3919 2017-02-12 00:48:00           Kerosene
## 3920 2017-02-12 00:48:00           Kerosene
## 3921 2017-02-12 00:48:00           Kerosene
## 3922 2017-02-12 00:48:00           Kerosene
## 3923 2017-02-12 00:48:00           Kerosene
## 3924 2017-02-12 00:48:00           Kerosene
## 3925 2017-02-12 00:48:00           Kerosene
## 3926 2017-02-12 00:48:00           Kerosene
## 3927 2017-02-12 00:48:00           Kerosene
## 3928 2017-02-12 00:48:00           Kerosene
## 3929 2017-02-12 00:48:00           Kerosene
## 3930 2017-02-12 00:48:00           Kerosene
## 3931 2017-02-12 00:48:00           Kerosene
## 3932 2017-02-12 00:48:00           Kerosene
## 3933 2017-02-12 00:48:00           Kerosene
## 3934 2017-02-12 00:48:00           Kerosene
## 3935 2017-02-12 00:48:00           Kerosene
## 3936 2017-02-12 00:48:00           Kerosene
## 3937 2017-02-12 00:48:00           Kerosene
## 3938 2017-02-12 00:48:00           Kerosene
## 3939 2017-02-12 00:48:00           Kerosene
## 3940 2017-02-12 00:48:00           Kerosene
## 3941 2017-02-12 00:48:00           Kerosene
## 3942 2017-02-12 00:48:00           Kerosene
## 3943 2017-02-12 00:48:00           Kerosene
## 3944 2017-02-12 00:48:00           Kerosene
## 3945 2017-02-12 00:48:00           Kerosene
## 3946 2017-02-12 00:48:00           Kerosene
## 3947 2017-02-12 00:48:00           Kerosene
## 3948 2017-02-12 00:48:00           Kerosene
## 3949 2017-02-12 00:48:00           Kerosene
## 3950 2017-02-12 00:48:00           Kerosene
## 3951 2017-02-12 00:48:00           Kerosene
## 3952 2017-11-25 00:01:00          CleanCook
## 3953 2017-12-11 11:58:00                LPG
## 3954 2017-02-12 00:30:00           Kerosene
## 3955 2017-02-12 00:30:00           Kerosene
## 3956 2017-02-12 00:30:00           Kerosene
## 3957 2017-02-12 00:30:00           Kerosene
## 3958 2017-02-12 00:30:00           Kerosene
## 3959 2017-02-12 00:30:00           Kerosene
## 3960 2017-02-12 00:30:00           Kerosene
## 3961 2017-02-12 00:30:00           Kerosene
## 3962 2017-02-12 00:30:00           Kerosene
## 3963 2017-02-12 00:30:00           Kerosene
## 3964 2017-02-12 00:30:00           Kerosene
## 3965 2017-02-12 00:30:00           Kerosene
## 3966 2017-02-12 00:30:00           Kerosene
## 3967 2017-02-12 00:30:00           Kerosene
## 3968 2017-02-12 00:30:00           Kerosene
## 3969 2017-02-12 00:30:00           Kerosene
## 3970 2017-02-12 00:30:00           Kerosene
## 3971 2017-02-12 00:30:00           Kerosene
## 3972 2017-02-12 00:30:00           Kerosene
## 3973 2017-02-12 00:30:00           Kerosene
## 3974 2017-02-12 00:30:00           Kerosene
## 3975 2017-02-12 00:30:00           Kerosene
## 3976 2017-02-12 00:30:00           Kerosene
## 3977 2017-02-12 00:30:00           Kerosene
## 3978 2017-02-12 00:30:00           Kerosene
## 3979 2017-02-12 00:30:00           Kerosene
## 3980 2017-02-12 00:30:00           Kerosene
## 3981 2017-02-12 00:30:00           Kerosene
## 3982 2017-02-12 00:30:00           Kerosene
## 3983 2017-02-12 00:30:00           Kerosene
## 3984 2017-02-12 00:30:00           Kerosene
## 3985 2017-02-12 00:30:00           Kerosene
## 3986 2017-02-12 00:30:00           Kerosene
## 3987 2017-02-12 00:30:00           Kerosene
## 3988 2017-02-12 00:30:00           Kerosene
## 3989 2017-02-12 00:30:00           Kerosene
## 3990 2017-02-12 00:30:00           Kerosene
## 3991 2017-02-12 00:30:00           Kerosene
## 3992 2017-02-12 00:30:00           Kerosene
## 3993 2017-02-12 00:30:00           Kerosene
## 3994 2017-02-12 00:30:00           Kerosene
## 3995 2017-02-12 00:30:00           Kerosene
## 3996 2017-02-12 00:30:00           Kerosene
## 3997 2017-02-12 00:30:00           Kerosene
## 3998 2017-02-12 00:30:00           Kerosene
## 3999 2017-02-12 00:30:00           Kerosene
## 4000 2017-02-12 00:30:00           Kerosene
## 4001 2017-02-12 00:30:00           Kerosene
## 4002 2017-02-12 00:30:00           Kerosene
## 4003 2017-02-12 00:30:00           Kerosene
## 4004 2017-02-12 00:30:00           Kerosene
## 4005 2017-02-12 00:30:00           Kerosene
## 4006 2017-02-12 00:30:00           Kerosene
## 4007 2017-02-12 00:30:00           Kerosene
## 4008 2017-02-12 00:30:00           Kerosene
## 4009 2017-02-12 00:30:00           Kerosene
## 4010 2017-02-12 00:30:00           Kerosene
## 4011 2017-02-12 00:30:00           Kerosene
## 4012 2017-02-12 00:12:00                LPG
## 4013 2017-02-12 00:12:00                LPG
## 4014 2017-02-12 00:12:00                LPG
## 4015 2017-02-12 00:12:00                LPG
## 4016 2017-02-12 00:12:00                LPG
## 4017 2017-02-12 00:12:00                LPG
## 4018 2017-02-12 00:12:00                LPG
## 4019 2017-02-12 00:12:00                LPG
## 4020 2017-02-12 00:12:00                LPG
## 4021 2017-02-12 00:12:00                LPG
## 4022 2017-02-12 00:12:00                LPG
## 4023 2017-02-12 00:12:00                LPG
## 4024 2017-02-12 00:12:00                LPG
## 4025 2017-02-12 00:12:00                LPG
## 4026 2017-02-12 00:12:00                LPG
## 4027 2017-02-12 00:12:00                LPG
## 4028 2017-02-12 00:12:00                LPG
## 4029 2017-02-12 00:12:00                LPG
## 4030 2017-02-12 00:12:00                LPG
## 4031 2017-02-12 00:12:00                LPG
## 4032 2017-02-12 00:12:00                LPG
## 4033 2017-02-12 00:12:00                LPG
## 4034 2017-02-12 00:12:00                LPG
## 4035 2017-02-12 00:12:00                LPG
## 4036 2017-02-12 00:12:00                LPG
## 4037 2017-02-12 00:12:00                LPG
## 4038 2017-02-12 00:12:00                LPG
## 4039 2017-02-12 00:12:00                LPG
## 4040 2017-02-12 00:12:00                LPG
## 4041 2017-02-12 00:12:00                LPG
## 4042 2017-02-12 00:12:00                LPG
## 4043 2017-02-12 00:12:00                LPG
## 4044 2017-02-12 00:12:00                LPG
## 4045 2017-02-12 00:12:00                LPG
## 4046 2017-02-12 00:12:00                LPG
## 4047 2017-02-12 00:12:00                LPG
## 4048 2017-02-12 00:12:00                LPG
## 4049 2017-02-12 00:12:00                LPG
## 4050 2017-02-12 00:12:00                LPG
## 4051 2017-02-12 00:12:00                LPG
## 4052 2017-02-12 00:12:00                LPG
## 4053 2017-02-12 00:12:00                LPG
## 4054 2017-02-12 00:12:00                LPG
## 4055 2017-02-12 00:12:00                LPG
## 4056 2017-02-12 00:12:00                LPG
## 4057 2017-02-12 00:12:00                LPG
## 4058 2017-02-12 00:12:00                LPG
## 4059 2017-02-12 00:12:00                LPG
## 4060 2017-02-12 00:12:00                LPG
## 4061 2017-02-12 00:12:00                LPG
## 4062 2017-02-12 00:12:00                LPG
## 4063 2017-02-12 00:12:00                LPG
## 4064 2017-02-12 00:12:00                LPG
## 4065 2017-02-12 00:12:00                LPG
## 4066 2017-02-12 00:16:00          CleanCook
## 4067 2017-02-12 00:16:00          CleanCook
## 4068 2017-02-12 00:16:00          CleanCook
## 4069 2017-02-12 00:16:00          CleanCook
## 4070 2017-02-12 00:16:00          CleanCook
## 4071 2017-02-12 00:16:00          CleanCook
## 4072 2017-02-12 00:16:00          CleanCook
## 4073 2017-02-12 00:16:00          CleanCook
## 4074 2017-02-12 00:16:00          CleanCook
## 4075 2017-02-12 00:16:00          CleanCook
## 4076 2017-02-12 00:16:00          CleanCook
## 4077 2017-02-12 00:16:00          CleanCook
## 4078 2017-02-12 00:16:00          CleanCook
## 4079 2017-02-12 00:16:00          CleanCook
## 4080 2017-02-12 00:16:00          CleanCook
## 4081 2017-02-12 00:16:00          CleanCook
## 4082 2017-02-12 00:16:00          CleanCook
## 4083 2017-02-12 00:16:00          CleanCook
## 4084 2017-02-12 00:16:00          CleanCook
## 4085 2017-02-12 00:16:00          CleanCook
## 4086 2017-02-12 00:16:00          CleanCook
## 4087 2017-02-12 00:16:00          CleanCook
## 4088 2017-02-12 00:16:00          CleanCook
## 4089 2017-02-12 00:16:00          CleanCook
## 4090 2017-02-12 00:16:00          CleanCook
## 4091 2017-02-12 00:16:00          CleanCook
## 4092 2017-02-12 00:16:00          CleanCook
## 4093 2017-02-12 00:16:00          CleanCook
## 4094 2017-02-12 00:16:00          CleanCook
## 4095 2017-02-12 00:16:00          CleanCook
## 4096 2017-02-12 00:16:00          CleanCook
## 4097 2017-02-12 00:16:00          CleanCook
## 4098 2017-02-12 00:16:00          CleanCook
## 4099 2017-02-12 00:16:00          CleanCook
## 4100 2017-02-12 00:16:00          CleanCook
## 4101 2017-02-12 00:16:00          CleanCook
## 4102 2017-02-12 00:16:00          CleanCook
## 4103 2017-02-12 00:16:00          CleanCook
## 4104 2017-02-12 00:16:00          CleanCook
## 4105 2017-02-12 00:16:00          CleanCook
## 4106 2017-02-12 00:16:00          CleanCook
## 4107 2017-02-12 00:16:00          CleanCook
## 4108 2017-02-12 00:16:00          CleanCook
## 4109 2017-02-12 00:16:00          CleanCook
## 4110 2017-02-12 00:16:00          CleanCook
## 4111 2017-02-12 00:16:00          CleanCook
## 4112 2017-02-12 00:16:00          CleanCook
## 4113 2017-02-12 00:16:00          CleanCook
## 4114 2017-02-12 00:16:00          CleanCook
## 4115 2017-02-12 00:16:00          CleanCook
## 4116 2017-02-12 00:16:00          CleanCook
## 4117 2017-02-12 00:16:00          CleanCook
## 4118 2017-02-12 00:16:00          CleanCook
## 4119 2017-02-12 00:16:00          CleanCook
## 4120 2017-02-12 00:16:00          CleanCook
## 4121 2017-02-12 00:16:00          CleanCook
## 4122 2017-02-12 00:16:00          CleanCook
## 4123 2017-02-12 00:16:00          CleanCook
## 4124 2017-02-12 00:16:00          CleanCook
## 4125 2017-02-12 00:16:00          CleanCook
## 4126 2017-02-12 00:16:00          CleanCook
## 4127 2017-02-12 00:16:00          CleanCook
## 4128 2017-02-12 00:16:00          CleanCook
## 4129 2017-02-12 00:16:00          CleanCook
## 4130 2017-02-12 00:16:00          CleanCook
## 4131 2017-02-12 00:16:00          CleanCook
## 4132 2017-02-12 00:16:00          CleanCook
## 4133 2017-02-12 00:16:00          CleanCook
## 4134 2017-02-12 00:16:00          CleanCook
## 4135 2017-02-12 00:16:00          CleanCook
## 4136 2017-02-12 00:16:00          CleanCook
## 4137 2017-02-12 00:16:00          CleanCook
## 4138 2017-02-12 00:16:00          CleanCook
## 4139 2017-02-12 00:16:00          CleanCook
## 4140 2017-02-12 00:16:00          CleanCook
## 4141 2018-02-14 06:36:00          CleanCook
## 4142 2017-11-25 00:09:00          CleanCook
## 4143 2017-11-25 07:23:00           Kerosene
## 4144 2018-02-04 00:09:00           Kerosene
## 4145 2018-02-04 18:35:00          CleanCook
## 4146 2018-02-04 18:35:00          CleanCook
## 4147 2018-02-04 18:35:00          CleanCook
## 4148 2018-02-04 18:35:00          CleanCook
## 4149 2018-02-04 18:35:00          CleanCook
## 4150 2018-02-04 18:35:00          CleanCook
## 4151 2018-02-04 18:35:00          CleanCook
## 4152 2018-02-04 18:35:00          CleanCook
## 4153 2018-02-04 18:35:00          CleanCook
## 4154 2018-01-21 00:02:00           Kerosene
## 4155 2018-01-21 19:59:00          CleanCook
## 4156 2018-01-21 19:59:00          CleanCook
## 4157 2018-01-21 19:59:00          CleanCook
## 4158 2018-01-21 19:59:00          CleanCook
## 4159 2018-01-21 19:59:00          CleanCook
## 4160 2018-01-21 19:59:00          CleanCook
## 4161 2018-01-21 19:59:00          CleanCook
## 4162 2018-01-21 19:59:00          CleanCook
## 4163 2018-01-21 19:59:00          CleanCook
## 4164 2018-01-07 00:04:00           Kerosene
## 4165 2018-01-07 17:31:00          CleanCook
## 4166 2018-01-07 17:31:00          CleanCook
## 4167 2018-01-07 17:31:00          CleanCook
## 4168 2018-01-07 17:31:00          CleanCook
## 4169 2018-01-07 17:31:00          CleanCook
## 4170 2018-01-07 17:31:00          CleanCook
## 4171 2017-12-10 00:01:00           Kerosene
## 4172 2017-12-10 08:45:00          CleanCook
## 4173 2017-12-10 08:45:00          CleanCook
## 4174 2017-12-10 08:45:00          CleanCook
## 4175 2017-12-10 08:45:00          CleanCook
## 4176 2017-12-10 08:45:00          CleanCook
## 4177 2017-12-10 08:45:00          CleanCook
## 4178 2017-12-10 08:45:00          CleanCook
## 4179 2017-12-10 08:45:00          CleanCook
## 4180 2017-12-10 08:45:00          CleanCook
## 4181 2017-12-10 08:45:00          CleanCook
## 4182 2017-12-10 08:45:00          CleanCook
## 4183 2017-12-10 08:45:00          CleanCook
## 4184 2017-12-10 08:45:00          CleanCook
## 4185 2017-11-26 00:00:00          CleanCook
## 4186 2017-11-26 00:00:00          CleanCook
## 4187 2017-11-26 00:00:00          CleanCook
## 4188 2017-11-26 00:00:00          CleanCook
## 4189 2017-11-26 00:00:00          CleanCook
## 4190 2017-11-26 00:00:00          CleanCook
## 4191 2017-11-26 00:00:00          CleanCook
## 4192 2017-11-26 00:00:00          CleanCook
## 4193 2017-11-26 00:00:00          CleanCook
## 4194 2017-11-26 00:00:00          CleanCook
## 4195 2017-12-07 18:22:00           Kerosene
## 4196 2017-11-18 00:00:00           Kerosene
## 4197 2017-11-22 06:47:00          CleanCook
## 4198 2017-11-22 06:47:00          CleanCook
## 4199 2017-11-22 06:47:00          CleanCook
## 4200 2017-11-22 06:47:00          CleanCook
## 4201 2017-10-15 06:25:00                LPG
## 4202 2017-10-15 06:25:00                LPG
## 4203 2017-10-15 06:25:00                LPG
## 4204 2017-10-15 06:25:00                LPG
## 4205 2017-10-15 06:25:00                LPG
## 4206 2017-10-15 06:25:00                LPG
## 4207 2017-10-15 06:25:00                LPG
## 4208 2017-10-15 06:25:00                LPG
## 4209 2017-10-15 06:25:00                LPG
## 4210 2017-10-15 06:25:00                LPG
## 4211 2017-10-15 06:25:00                LPG
## 4212 2017-10-15 06:25:00                LPG
## 4213 2017-10-15 06:25:00                LPG
## 4214 2017-10-15 06:25:00                LPG
## 4215 2017-10-15 06:25:00                LPG
## 4216 2017-10-15 06:25:00                LPG
## 4217 2017-10-15 06:25:00                LPG
## 4218 2017-10-15 06:25:00                LPG
## 4219 2017-10-15 06:25:00                LPG
## 4220 2017-10-15 06:25:00                LPG
## 4221 2017-10-15 06:25:00                LPG
## 4222 2017-10-15 06:25:00                LPG
## 4223 2017-10-15 06:25:00                LPG
## 4224 2017-10-15 06:25:00                LPG
## 4225 2017-10-15 06:25:00                LPG
## 4226 2017-10-15 06:25:00                LPG
## 4227 2017-10-15 06:25:00                LPG
## 4228 2017-10-15 06:25:00                LPG
## 4229 2017-10-15 06:25:00                LPG
## 4230 2017-10-15 06:25:00                LPG
## 4231 2017-10-15 06:25:00                LPG
## 4232 2017-10-15 06:25:00                LPG
## 4233 2017-10-15 06:25:00                LPG
## 4234 2017-10-15 06:25:00                LPG
## 4235 2017-10-15 06:25:00                LPG
## 4236 2017-10-15 06:25:00                LPG
## 4237 2017-10-15 06:25:00                LPG
## 4238 2017-10-15 06:25:00                LPG
## 4239 2017-10-15 06:25:00                LPG
## 4240 2017-10-15 06:25:00                LPG
## 4241 2017-10-15 06:25:00                LPG
## 4242 2017-10-15 06:25:00                LPG
## 4243 2017-10-15 06:25:00                LPG
## 4244 2017-10-15 17:36:00          CleanCook
## 4245 2017-10-15 17:36:00          CleanCook
## 4246 2017-10-15 17:36:00          CleanCook
## 4247 2017-10-15 17:36:00          CleanCook
## 4248 2017-10-15 17:36:00          CleanCook
## 4249 2017-10-15 17:36:00          CleanCook
## 4250 2017-10-15 17:36:00          CleanCook
## 4251 2017-10-15 17:36:00          CleanCook
## 4252 2017-10-15 17:36:00          CleanCook
## 4253 2017-10-15 17:36:00          CleanCook
## 4254 2017-10-15 17:36:00          CleanCook
## 4255 2017-10-15 17:36:00          CleanCook
## 4256 2017-10-15 17:36:00          CleanCook
## 4257 2017-10-15 17:36:00          CleanCook
## 4258 2017-10-07 17:24:00                LPG
## 4259 2017-10-07 17:24:00                LPG
## 4260 2017-10-07 17:24:00                LPG
## 4261 2017-10-07 17:24:00                LPG
## 4262 2017-10-07 17:24:00                LPG
## 4263 2017-10-07 17:24:00                LPG
## 4264 2017-10-07 17:24:00                LPG
## 4265 2017-10-07 17:24:00                LPG
## 4266 2017-10-07 17:24:00                LPG
## 4267 2017-10-07 17:24:00                LPG
## 4268 2017-10-07 17:24:00                LPG
## 4269 2017-10-07 17:24:00                LPG
## 4270 2017-10-07 17:24:00                LPG
## 4271 2017-10-07 17:24:00                LPG
## 4272 2017-10-07 17:24:00                LPG
## 4273 2017-10-07 17:24:00                LPG
## 4274 2017-10-07 17:24:00                LPG
## 4275 2017-10-07 17:24:00                LPG
## 4276 2017-10-07 17:24:00                LPG
## 4277 2017-10-07 17:24:00                LPG
## 4278 2017-10-07 17:24:00                LPG
## 4279 2017-10-07 17:24:00                LPG
## 4280 2017-10-07 17:24:00                LPG
## 4281 2017-10-08 05:55:00          CleanCook
## 4282 2017-10-08 05:55:00          CleanCook
## 4283 2017-10-08 05:55:00          CleanCook
## 4284 2017-10-08 05:55:00          CleanCook
## 4285 2017-10-08 05:55:00          CleanCook
## 4286 2018-02-04 07:33:00          CleanCook
## 4287 2018-02-04 07:33:00          CleanCook
## 4288 2018-02-04 07:33:00          CleanCook
## 4289 2018-02-04 07:33:00          CleanCook
## 4290 2018-02-04 07:33:00          CleanCook
## 4291 2018-02-04 07:33:00          CleanCook
## 4292 2018-02-04 07:33:00          CleanCook
## 4293 2018-02-04 07:33:00          CleanCook
## 4294 2018-02-04 07:33:00          CleanCook
## 4295 2018-02-04 07:33:00          CleanCook
## 4296 2018-02-04 07:33:00          CleanCook
## 4297 2018-02-04 07:33:00          CleanCook
## 4298 2018-02-04 07:33:00          CleanCook
## 4299 2018-02-04 07:33:00          CleanCook
## 4300 2018-02-04 07:33:00          CleanCook
## 4301 2018-02-04 07:33:00          CleanCook
## 4302 2018-02-04 07:33:00          CleanCook
## 4303 2018-02-04 07:33:00          CleanCook
## 4304 2018-02-04 07:33:00          CleanCook
## 4305 2018-02-04 07:33:00          CleanCook
## 4306 2018-02-04 07:33:00          CleanCook
## 4307 2018-02-04 07:33:00          CleanCook
## 4308 2018-02-11 19:59:00           Kerosene
## 4309 2018-02-11 19:59:00           Kerosene
## 4310 2018-02-11 19:59:00           Kerosene
## 4311 2018-02-11 19:59:00           Kerosene
## 4312 2018-02-11 19:59:00           Kerosene
## 4313 2018-02-11 19:59:00           Kerosene
## 4314 2018-02-11 19:59:00           Kerosene
## 4315 2018-02-11 19:59:00           Kerosene
## 4316 2018-02-11 19:59:00           Kerosene
## 4317 2018-02-11 19:59:00           Kerosene
## 4318 2018-02-11 19:59:00           Kerosene
## 4319 2018-01-21 09:27:00          CleanCook
## 4320 2018-01-21 09:27:00          CleanCook
## 4321 2018-01-21 09:27:00          CleanCook
## 4322 2018-01-21 09:27:00          CleanCook
## 4323 2018-01-21 09:27:00          CleanCook
## 4324 2018-01-21 09:27:00          CleanCook
## 4325 2018-01-21 09:27:00          CleanCook
## 4326 2018-01-21 09:27:00          CleanCook
## 4327 2018-01-21 09:27:00          CleanCook
## 4328 2018-01-21 09:27:00          CleanCook
## 4329 2018-01-21 09:27:00          CleanCook
## 4330 2018-01-21 09:27:00          CleanCook
## 4331 2018-01-21 09:27:00          CleanCook
## 4332 2018-01-21 09:27:00          CleanCook
## 4333 2018-01-21 09:27:00          CleanCook
## 4334 2018-01-21 09:27:00          CleanCook
## 4335 2018-01-21 09:27:00          CleanCook
## 4336 2018-01-21 09:27:00          CleanCook
## 4337 2018-01-21 09:27:00          CleanCook
## 4338 2018-01-21 09:27:00          CleanCook
## 4339 2018-01-21 09:27:00          CleanCook
## 4340 2018-01-21 09:27:00          CleanCook
## 4341 2018-01-21 09:27:00          CleanCook
## 4342 2018-01-21 09:27:00          CleanCook
## 4343 2018-01-21 09:27:00          CleanCook
## 4344 2018-01-21 09:27:00          CleanCook
## 4345 2018-01-21 09:27:00          CleanCook
## 4346 2018-01-21 09:27:00          CleanCook
## 4347 2018-01-21 09:27:00          CleanCook
## 4348 2018-01-21 09:27:00          CleanCook
## 4349 2018-01-21 09:27:00          CleanCook
## 4350 2018-01-21 09:27:00          CleanCook
## 4351 2018-01-21 09:27:00          CleanCook
## 4352 2018-01-21 09:27:00          CleanCook
## 4353 2018-01-21 12:53:00           Kerosene
## 4354 2018-01-21 12:53:00           Kerosene
## 4355 2018-01-21 12:53:00           Kerosene
## 4356 2018-01-21 12:53:00           Kerosene
## 4357 2018-01-21 12:53:00           Kerosene
## 4358 2018-01-21 12:53:00           Kerosene
## 4359 2018-01-21 12:53:00           Kerosene
## 4360 2018-01-19 20:15:00          CleanCook
## 4361 2018-01-07 08:05:00           Kerosene
## 4362 2018-01-07 08:05:00           Kerosene
## 4363 2018-01-07 08:05:00           Kerosene
## 4364 2018-01-07 08:05:00           Kerosene
## 4365 2018-01-07 08:05:00           Kerosene
## 4366 2018-01-07 08:05:00           Kerosene
## 4367 2018-01-07 08:05:00           Kerosene
## 4368 2018-01-07 08:05:00           Kerosene
## 4369 2018-01-07 08:05:00           Kerosene
## 4370 2018-01-07 08:05:00           Kerosene
## 4371 2018-01-07 08:05:00           Kerosene
## 4372 2018-01-07 08:05:00           Kerosene
## 4373 2018-01-07 08:05:00           Kerosene
## 4374 2018-01-07 08:05:00           Kerosene
## 4375 2018-01-07 08:05:00           Kerosene
## 4376 2018-01-07 08:05:00           Kerosene
## 4377 2018-01-07 08:05:00           Kerosene
## 4378 2018-01-07 08:05:00           Kerosene
## 4379 2018-01-07 08:05:00           Kerosene
## 4380 2018-01-07 08:05:00           Kerosene
## 4381 2018-01-07 08:05:00           Kerosene
## 4382 2018-01-07 08:05:00           Kerosene
## 4383 2018-01-07 08:05:00           Kerosene
## 4384 2018-01-07 08:05:00           Kerosene
## 4385 2018-01-07 08:05:00           Kerosene
## 4386 2018-01-07 08:05:00           Kerosene
## 4387 2018-01-07 08:05:00           Kerosene
## 4388 2018-01-07 08:05:00           Kerosene
## 4389 2018-01-07 08:05:00           Kerosene
## 4390 2017-12-10 08:44:00          CleanCook
## 4391 2017-12-10 08:44:00          CleanCook
## 4392 2017-12-10 08:44:00          CleanCook
## 4393 2017-12-10 08:44:00          CleanCook
## 4394 2017-12-10 08:44:00          CleanCook
## 4395 2017-12-10 08:44:00          CleanCook
## 4396 2017-12-10 08:44:00          CleanCook
## 4397 2017-12-10 08:44:00          CleanCook
## 4398 2017-12-10 08:44:00          CleanCook
## 4399 2017-12-10 08:44:00          CleanCook
## 4400 2017-12-10 08:44:00          CleanCook
## 4401 2017-12-10 08:44:00          CleanCook
## 4402 2017-12-10 08:44:00          CleanCook
## 4403 2017-12-10 08:44:00          CleanCook
## 4404 2017-12-10 08:44:00          CleanCook
## 4405 2017-12-10 08:44:00          CleanCook
## 4406 2017-12-10 08:44:00          CleanCook
## 4407 2017-12-10 08:44:00          CleanCook
## 4408 2017-12-10 08:44:00          CleanCook
## 4409 2017-12-10 08:44:00          CleanCook
## 4410 2017-12-10 08:44:00          CleanCook
## 4411 2017-12-10 08:44:00          CleanCook
## 4412 2017-11-24 18:40:00           Kerosene
## 4413 2017-11-24 18:40:00           Kerosene
## 4414 2017-11-24 18:40:00           Kerosene
## 4415 2017-11-24 18:40:00           Kerosene
## 4416 2017-11-24 18:40:00           Kerosene
## 4417 2017-11-24 18:40:00           Kerosene
## 4418 2017-11-24 18:40:00           Kerosene
## 4419 2017-11-24 18:40:00           Kerosene
## 4420 2017-11-24 18:40:00           Kerosene
## 4421 2017-11-24 18:40:00           Kerosene
## 4422 2017-11-24 18:40:00           Kerosene
## 4423 2017-11-24 18:40:00           Kerosene
## 4424 2017-11-24 18:40:00           Kerosene
## 4425 2017-11-24 18:40:00           Kerosene
## 4426 2017-11-24 18:40:00           Kerosene
## 4427 2017-11-24 18:40:00           Kerosene
## 4428 2017-11-24 18:40:00           Kerosene
## 4429 2017-11-24 18:40:00           Kerosene
## 4430 2017-11-24 18:40:00           Kerosene
## 4431 2017-11-24 18:40:00           Kerosene
## 4432 2017-11-24 18:40:00           Kerosene
## 4433 2017-11-24 18:40:00           Kerosene
## 4434 2017-11-24 18:40:00           Kerosene
## 4435 2017-11-19 07:38:00          CleanCook
## 4436 2017-11-19 07:38:00          CleanCook
## 4437 2017-11-19 07:38:00          CleanCook
## 4438 2017-11-19 07:38:00          CleanCook
## 4439 2017-11-19 07:38:00          CleanCook
## 4440 2017-11-19 07:38:00          CleanCook
## 4441 2017-11-19 07:38:00          CleanCook
## 4442 2017-11-19 07:38:00          CleanCook
## 4443 2017-11-19 07:38:00          CleanCook
## 4444 2017-11-19 07:38:00          CleanCook
## 4445 2017-11-19 07:38:00          CleanCook
## 4446 2017-11-19 07:38:00          CleanCook
## 4447 2017-11-19 07:38:00          CleanCook
## 4448 2017-11-19 07:38:00          CleanCook
## 4449 2017-11-19 07:38:00          CleanCook
## 4450 2017-11-19 07:38:00          CleanCook
## 4451 2017-11-19 07:38:00          CleanCook
## 4452 2017-11-19 07:38:00          CleanCook
## 4453 2017-11-19 07:38:00          CleanCook
## 4454 2017-11-19 07:38:00          CleanCook
## 4455 2017-11-19 07:38:00          CleanCook
## 4456 2017-11-19 07:38:00          CleanCook
## 4457 2017-11-19 07:38:00          CleanCook
## 4458 2017-11-19 07:38:00          CleanCook
## 4459 2017-11-19 07:38:00          CleanCook
## 4460 2017-11-19 07:38:00          CleanCook
## 4461 2017-11-19 07:38:00          CleanCook
## 4462 2017-11-19 07:38:00          CleanCook
## 4463 2017-11-19 07:38:00          CleanCook
## 4464 2017-11-19 07:38:00          CleanCook
## 4465 2017-10-15 00:03:00                LPG
## 4466 2017-10-15 12:57:00          CleanCook
## 4467 2017-10-15 12:57:00          CleanCook
## 4468 2017-10-15 12:57:00          CleanCook
## 4469 2017-10-15 12:57:00          CleanCook
## 4470 2017-10-15 12:57:00          CleanCook
## 4471 2017-10-15 12:57:00          CleanCook
## 4472 2017-10-15 12:57:00          CleanCook
## 4473 2017-10-15 12:57:00          CleanCook
## 4474 2017-10-16 20:24:00           Kerosene
## 4475 2017-10-16 20:24:00           Kerosene
## 4476 2017-10-16 20:24:00           Kerosene
## 4477 2017-10-16 20:24:00           Kerosene
## 4478 2017-10-16 20:24:00           Kerosene
## 4479 2017-10-16 20:24:00           Kerosene
## 4480 2017-10-16 20:24:00           Kerosene
## 4481 2017-10-16 20:24:00           Kerosene
## 4482 2017-10-16 20:24:00           Kerosene
## 4483 2017-10-16 20:24:00           Kerosene
## 4484 2017-10-16 20:24:00           Kerosene
## 4485 2017-10-16 20:24:00           Kerosene
## 4486 2017-10-16 20:24:00           Kerosene
## 4487 2017-10-16 20:24:00           Kerosene
## 4488 2017-10-16 20:24:00           Kerosene
## 4489 2017-10-16 20:24:00           Kerosene
## 4490 2017-10-16 20:24:00           Kerosene
## 4491 2017-10-16 20:24:00           Kerosene
## 4492 2017-10-16 20:24:00           Kerosene
## 4493 2017-10-06 20:23:00          CleanCook
## 4494 2017-10-06 20:23:00          CleanCook
## 4495 2017-10-06 20:23:00          CleanCook
## 4496 2017-10-06 20:23:00          CleanCook
## 4497 2017-10-06 20:23:00          CleanCook
## 4498 2017-10-06 20:23:00          CleanCook
## 4499 2017-10-06 20:23:00          CleanCook
## 4500 2017-10-06 20:23:00          CleanCook
## 4501 2017-10-06 20:23:00          CleanCook
## 4502 2017-10-06 15:30:00           Kerosene
## 4503 2017-10-06 15:30:00           Kerosene
## 4504 2017-10-06 15:30:00           Kerosene
## 4505 2017-10-06 15:30:00           Kerosene
## 4506 2017-10-06 15:30:00           Kerosene
## 4507 2017-10-06 15:30:00           Kerosene
## 4508 2017-10-06 15:30:00           Kerosene
## 4509 2017-10-06 15:30:00           Kerosene
## 4510 2017-10-06 15:30:00           Kerosene
## 4511 2017-10-06 15:30:00           Kerosene
## 4512 2017-10-06 15:30:00           Kerosene
## 4513 2017-10-06 15:30:00           Kerosene
## 4514 2017-10-06 15:30:00           Kerosene
## 4515 2017-10-08 16:04:00                LPG
## 4516 2017-10-08 16:04:00                LPG
## 4517 2017-12-26 21:13:00           Kerosene
## 4518 2017-12-26 21:13:00           Kerosene
## 4519 2017-12-26 21:13:00           Kerosene
## 4520 2017-12-26 21:13:00           Kerosene
## 4521 2017-12-26 21:13:00           Kerosene
## 4522 2017-12-26 21:13:00           Kerosene
## 4523 2017-12-26 21:13:00           Kerosene
## 4524 2017-12-26 21:13:00           Kerosene
## 4525 2017-12-26 21:13:00           Kerosene
## 4526 2017-12-26 21:13:00           Kerosene
## 4527 2017-12-26 21:13:00           Kerosene
## 4528 2017-12-26 21:13:00           Kerosene
## 4529 2017-12-26 21:13:00           Kerosene
## 4530 2017-12-26 21:13:00           Kerosene
## 4531 2017-12-26 21:13:00           Kerosene
## 4532 2017-12-26 21:13:00           Kerosene
## 4533 2017-12-26 21:13:00           Kerosene
## 4534 2017-12-26 21:13:00           Kerosene
## 4535 2017-12-26 21:13:00           Kerosene
## 4536 2017-12-26 21:13:00           Kerosene
## 4537 2017-12-26 21:13:00           Kerosene
## 4538 2017-12-26 21:13:00           Kerosene
## 4539 2017-12-26 21:13:00           Kerosene
## 4540 2017-12-26 21:13:00           Kerosene
## 4541 2017-12-26 21:13:00           Kerosene
## 4542 2017-12-26 21:13:00           Kerosene
## 4543 2017-11-12 06:48:00           Kerosene
## 4544 2017-11-12 06:48:00           Kerosene
## 4545 2017-11-12 06:48:00           Kerosene
## 4546 2017-11-12 06:48:00           Kerosene
## 4547 2017-11-12 06:48:00           Kerosene
## 4548 2017-11-12 06:48:00           Kerosene
## 4549 2017-11-12 06:48:00           Kerosene
## 4550 2017-11-12 06:48:00           Kerosene
## 4551 2017-11-12 06:48:00           Kerosene
## 4552 2017-11-12 06:48:00           Kerosene
## 4553 2017-11-12 06:48:00           Kerosene
## 4554 2017-11-12 06:48:00           Kerosene
## 4555 2017-11-12 06:48:00           Kerosene
## 4556 2017-11-12 06:48:00           Kerosene
## 4557 2017-11-12 06:48:00           Kerosene
## 4558 2017-11-12 06:48:00           Kerosene
## 4559 2017-11-12 06:48:00           Kerosene
## 4560 2017-11-12 06:48:00           Kerosene
## 4561 2017-11-12 06:48:00           Kerosene
## 4562 2017-11-12 06:48:00           Kerosene
## 4563 2017-11-12 06:48:00           Kerosene
## 4564 2017-11-12 06:48:00           Kerosene
## 4565 2017-11-12 06:48:00           Kerosene
## 4566 2017-11-12 06:48:00           Kerosene
## 4567 2017-11-12 06:48:00           Kerosene
## 4568 2017-11-12 06:48:00           Kerosene
## 4569 2017-11-12 06:48:00           Kerosene
## 4570 2017-11-12 06:48:00           Kerosene
## 4571 2017-11-12 06:48:00           Kerosene
## 4572 2017-11-12 06:48:00           Kerosene
## 4573 2017-11-12 06:48:00           Kerosene
## 4574 2017-11-12 06:48:00           Kerosene
## 4575 2017-11-12 06:48:00           Kerosene
## 4576 2017-11-12 06:48:00           Kerosene
## 4577 2017-11-12 06:48:00           Kerosene
## 4578 2017-11-12 06:48:00           Kerosene
## 4579 2017-11-12 06:48:00           Kerosene
## 4580 2017-11-12 06:54:00           Kerosene
## 4581 2017-11-12 06:54:00           Kerosene
## 4582 2017-11-12 06:54:00           Kerosene
## 4583 2017-11-12 06:54:00           Kerosene
## 4584 2017-11-12 06:54:00           Kerosene
## 4585 2017-11-12 06:54:00           Kerosene
## 4586 2017-11-12 06:54:00           Kerosene
## 4587 2017-11-12 06:54:00           Kerosene
## 4588 2017-11-12 06:54:00           Kerosene
## 4589 2017-11-12 06:54:00           Kerosene
## 4590 2017-11-12 06:54:00           Kerosene
## 4591 2017-11-12 06:54:00           Kerosene
## 4592 2017-11-12 06:54:00           Kerosene
## 4593 2017-11-12 06:54:00           Kerosene
## 4594 2017-11-12 06:54:00           Kerosene
## 4595 2017-11-12 06:54:00           Kerosene
## 4596 2017-11-12 06:54:00           Kerosene
## 4597 2017-11-12 06:54:00           Kerosene
## 4598 2017-11-12 06:54:00           Kerosene
## 4599 2017-11-12 06:54:00           Kerosene
## 4600 2017-11-12 06:54:00           Kerosene
## 4601 2017-11-12 06:54:00           Kerosene
## 4602 2017-11-12 06:54:00           Kerosene
## 4603 2017-11-12 06:54:00           Kerosene
## 4604 2017-11-12 06:54:00           Kerosene
## 4605 2017-11-12 06:54:00           Kerosene
## 4606 2017-11-12 06:54:00           Kerosene
## 4607 2017-10-30 07:48:00           Kerosene
## 4608 2017-10-30 07:48:00           Kerosene
## 4609 2017-10-30 07:48:00           Kerosene
## 4610 2017-10-30 07:48:00           Kerosene
## 4611 2017-10-30 07:48:00           Kerosene
## 4612 2017-10-30 07:48:00           Kerosene
## 4613 2017-10-30 07:48:00           Kerosene
## 4614 2017-10-30 07:48:00           Kerosene
## 4615 2017-10-30 07:48:00           Kerosene
## 4616 2017-10-30 07:48:00           Kerosene
## 4617 2017-10-30 07:48:00           Kerosene
## 4618 2017-10-30 07:48:00           Kerosene
## 4619 2017-10-30 07:48:00           Kerosene
## 4620 2017-10-30 07:48:00           Kerosene
## 4621 2017-10-30 07:48:00           Kerosene
## 4622 2017-10-30 07:48:00           Kerosene
## 4623 2017-10-30 07:48:00           Kerosene
## 4624 2017-10-30 07:48:00           Kerosene
## 4625 2017-10-30 07:48:00           Kerosene
## 4626 2017-10-30 07:48:00           Kerosene
## 4627 2017-10-30 07:48:00           Kerosene
## 4628 2017-10-30 07:48:00           Kerosene
## 4629 2017-10-30 07:48:00           Kerosene
## 4630 2017-10-30 07:48:00           Kerosene
## 4631 2017-10-30 07:48:00           Kerosene
## 4632 2017-10-30 07:48:00           Kerosene
## 4633 2017-10-30 07:48:00           Kerosene
## 4634 2017-10-30 07:48:00           Kerosene
## 4635 2017-10-30 07:48:00           Kerosene
## 4636 2017-10-30 08:51:00           Kerosene
## 4637 2017-10-30 08:51:00           Kerosene
## 4638 2017-10-30 08:51:00           Kerosene
## 4639 2017-10-30 08:51:00           Kerosene
## 4640 2017-10-30 08:51:00           Kerosene
## 4641 2017-10-30 08:51:00           Kerosene
## 4642 2017-10-30 08:51:00           Kerosene
## 4643 2017-10-30 08:51:00           Kerosene
## 4644 2017-10-30 08:51:00           Kerosene
## 4645 2017-10-30 08:51:00           Kerosene
## 4646 2017-10-30 08:51:00           Kerosene
## 4647 2017-10-30 08:51:00           Kerosene
## 4648 2017-10-30 08:51:00           Kerosene
## 4649 2017-10-30 08:51:00           Kerosene
## 4650 2017-10-30 08:51:00           Kerosene
## 4651 2017-10-30 08:51:00           Kerosene
## 4652 2017-10-30 08:51:00           Kerosene
## 4653 2017-10-30 08:51:00           Kerosene
## 4654 2017-10-30 08:51:00           Kerosene
## 4655 2017-10-30 08:51:00           Kerosene
## 4656 2017-10-30 08:51:00           Kerosene
## 4657 2017-10-30 08:51:00           Kerosene
## 4658 2017-10-30 08:51:00           Kerosene
## 4659 2017-10-30 08:51:00           Kerosene
## 4660 2017-10-30 08:51:00           Kerosene
## 4661 2017-10-30 08:51:00           Kerosene
## 4662 2017-10-16 16:45:00           Kerosene
## 4663 2017-10-16 16:45:00           Kerosene
## 4664 2017-10-16 16:45:00           Kerosene
## 4665 2017-10-16 16:45:00           Kerosene
## 4666 2017-10-16 16:45:00           Kerosene
## 4667 2017-10-16 16:45:00           Kerosene
## 4668 2017-10-16 16:45:00           Kerosene
## 4669 2017-10-16 17:01:00           Kerosene
## 4670 2017-10-16 17:01:00           Kerosene
## 4671 2017-10-16 17:01:00           Kerosene
## 4672 2017-10-16 17:01:00           Kerosene
## 4673 2017-10-16 17:01:00           Kerosene
## 4674 2017-10-16 17:01:00           Kerosene
## 4675 2017-10-16 17:01:00           Kerosene
## 4676 2017-12-24 21:47:00           Kerosene
## 4677 2017-02-12 00:06:00          CleanCook
## 4678 2017-02-12 00:06:00          CleanCook
## 4679 2017-02-12 00:06:00          CleanCook
## 4680 2017-02-12 00:06:00          CleanCook
## 4681 2017-02-12 00:06:00          CleanCook
## 4682 2017-02-12 00:06:00          CleanCook
## 4683 2017-02-12 00:06:00          CleanCook
## 4684 2017-02-12 00:06:00          CleanCook
## 4685 2017-02-12 00:06:00          CleanCook
## 4686 2017-02-12 00:06:00          CleanCook
## 4687 2017-02-12 00:06:00          CleanCook
## 4688 2017-02-12 00:06:00          CleanCook
## 4689 2017-02-12 00:06:00          CleanCook
## 4690 2017-02-12 00:06:00          CleanCook
## 4691 2017-02-12 00:06:00          CleanCook
## 4692 2017-02-12 00:06:00          CleanCook
## 4693 2017-02-12 00:06:00          CleanCook
## 4694 2017-02-12 00:06:00          CleanCook
## 4695 2017-02-12 00:06:00          CleanCook
## 4696 2017-02-12 00:06:00          CleanCook
## 4697 2017-02-12 00:06:00          CleanCook
## 4698 2017-02-12 00:06:00          CleanCook
## 4699 2017-02-12 00:06:00          CleanCook
## 4700 2017-02-12 00:06:00          CleanCook
## 4701 2017-02-12 00:06:00          CleanCook
## 4702 2017-02-12 00:06:00          CleanCook
## 4703 2017-02-12 00:06:00          CleanCook
## 4704 2017-02-12 00:06:00          CleanCook
## 4705 2017-02-12 00:06:00          CleanCook
## 4706 2017-02-12 00:06:00          CleanCook
## 4707 2017-02-12 00:06:00          CleanCook
## 4708 2017-02-12 00:06:00          CleanCook
## 4709 2017-02-12 00:06:00          CleanCook
## 4710 2017-02-12 00:06:00          CleanCook
## 4711 2017-02-12 00:06:00          CleanCook
## 4712 2017-02-12 00:06:00          CleanCook
## 4713 2017-02-12 00:06:00          CleanCook
## 4714 2017-02-12 00:06:00          CleanCook
## 4715 2017-02-12 00:06:00          CleanCook
## 4716 2017-02-12 00:06:00          CleanCook
## 4717 2017-02-12 00:06:00          CleanCook
## 4718 2017-02-12 00:06:00          CleanCook
## 4719 2017-02-12 00:06:00          CleanCook
## 4720 2017-02-12 00:06:00          CleanCook
## 4721 2017-02-12 00:06:00          CleanCook
## 4722 2017-02-12 00:06:00          CleanCook
## 4723 2017-02-12 00:06:00          CleanCook
## 4724 2017-02-12 00:06:00          CleanCook
## 4725 2017-02-12 00:06:00          CleanCook
## 4726 2017-02-12 00:06:00          CleanCook
## 4727 2017-02-12 00:06:00          CleanCook
## 4728 2017-02-12 00:06:00          CleanCook
## 4729 2017-02-12 00:06:00          CleanCook
## 4730 2017-02-12 00:06:00          CleanCook
## 4731 2017-02-12 06:03:00           Kerosene
## 4732 2017-02-12 06:03:00           Kerosene
## 4733 2017-02-12 06:03:00           Kerosene
## 4734 2017-02-12 06:03:00           Kerosene
## 4735 2017-02-12 06:03:00           Kerosene
## 4736 2017-02-12 06:03:00           Kerosene
## 4737 2017-02-12 06:03:00           Kerosene
## 4738 2017-02-12 06:03:00           Kerosene
## 4739 2017-02-12 06:03:00           Kerosene
## 4740 2017-02-12 06:03:00           Kerosene
## 4741 2017-02-12 06:03:00           Kerosene
## 4742 2017-02-12 06:03:00           Kerosene
## 4743 2017-02-12 06:03:00           Kerosene
## 4744 2017-02-12 06:03:00           Kerosene
## 4745 2017-02-12 06:03:00           Kerosene
## 4746 2017-02-12 06:03:00           Kerosene
## 4747 2017-02-12 06:03:00           Kerosene
## 4748 2017-02-12 06:03:00           Kerosene
## 4749 2017-02-12 06:03:00           Kerosene
## 4750 2017-02-12 06:03:00           Kerosene
## 4751 2017-02-12 06:03:00           Kerosene
## 4752 2017-02-12 06:03:00           Kerosene
## 4753 2017-02-12 06:03:00           Kerosene
## 4754 2017-02-12 06:03:00           Kerosene
## 4755 2017-02-12 06:03:00           Kerosene
## 4756 2017-02-12 06:03:00           Kerosene
## 4757 2017-02-12 06:03:00           Kerosene
## 4758 2017-02-12 06:03:00           Kerosene
## 4759 2017-02-12 06:03:00           Kerosene
## 4760 2017-02-12 06:03:00           Kerosene
## 4761 2017-02-12 00:39:00                LPG
## 4762 2017-02-12 00:39:00                LPG
## 4763 2017-02-12 00:39:00                LPG
## 4764 2017-02-12 00:39:00                LPG
## 4765 2017-02-12 00:39:00                LPG
## 4766 2017-02-12 00:39:00                LPG
## 4767 2017-02-12 00:39:00                LPG
## 4768 2017-02-12 00:39:00                LPG
## 4769 2017-02-12 00:39:00                LPG
## 4770 2017-02-12 00:39:00                LPG
## 4771 2017-02-12 00:39:00                LPG
## 4772 2017-02-12 00:39:00                LPG
## 4773 2017-02-12 00:39:00                LPG
## 4774 2017-02-12 00:39:00                LPG
## 4775 2017-02-12 00:39:00                LPG
## 4776 2017-02-12 00:39:00                LPG
## 4777 2017-02-12 00:39:00                LPG
## 4778 2017-02-12 00:39:00                LPG
## 4779 2017-02-12 00:39:00                LPG
## 4780 2017-02-12 00:39:00                LPG
## 4781 2017-02-12 00:39:00                LPG
## 4782 2017-02-12 00:39:00                LPG
## 4783 2017-02-12 00:39:00                LPG
## 4784 2017-02-12 00:39:00                LPG
## 4785 2017-02-12 00:39:00                LPG
## 4786 2017-02-12 00:39:00                LPG
## 4787 2017-02-12 00:39:00                LPG
## 4788 2017-02-12 00:39:00                LPG
## 4789 2017-02-12 00:39:00                LPG
## 4790 2017-02-12 00:39:00                LPG
## 4791 2017-02-12 00:39:00                LPG
## 4792 2017-02-12 00:39:00                LPG
## 4793 2017-02-12 00:39:00                LPG
## 4794 2017-02-12 00:39:00                LPG
## 4795 2017-02-12 00:39:00                LPG
## 4796 2017-02-12 00:39:00                LPG
## 4797 2017-02-12 00:39:00                LPG
## 4798 2017-02-12 00:39:00                LPG
## 4799 2017-02-12 00:39:00                LPG
## 4800 2017-02-12 00:39:00                LPG
## 4801 2018-03-01 10:38:00            Ambient
## 4802 2018-03-01 10:38:00            Ambient
## 4803 2018-03-01 10:38:00            Ambient
## 4804 2018-01-08 00:04:00            Ambient
## 4805 2017-12-09 00:07:00            Ambient
## 4806 2017-12-11 10:11:00          CleanCook
## 4807 2017-12-11 10:11:00          CleanCook
## 4808 2017-11-26 00:01:00            Ambient
## 4809 2017-02-12 02:25:00          CleanCook
## 4810 2017-02-12 02:25:00          CleanCook
## 4811 2017-02-12 02:25:00          CleanCook
## 4812 2017-02-12 02:25:00          CleanCook
## 4813 2017-02-12 02:25:00          CleanCook
## 4814 2017-02-12 02:25:00          CleanCook
## 4815 2017-02-12 02:25:00          CleanCook
## 4816 2017-02-12 02:25:00          CleanCook
## 4817 2017-02-12 02:25:00          CleanCook
## 4818 2017-02-12 02:25:00          CleanCook
## 4819 2017-02-12 02:25:00          CleanCook
## 4820 2017-02-12 02:25:00          CleanCook
## 4821 2017-02-12 02:25:00          CleanCook
## 4822 2017-02-12 02:25:00          CleanCook
## 4823 2017-02-12 02:25:00          CleanCook
## 4824 2017-02-12 02:25:00          CleanCook
## 4825 2017-02-12 02:25:00          CleanCook
## 4826 2017-02-12 02:25:00          CleanCook
## 4827 2017-02-12 02:25:00          CleanCook
## 4828 2017-02-12 02:25:00          CleanCook
## 4829 2017-02-12 02:25:00          CleanCook
## 4830 2017-02-12 02:25:00          CleanCook
## 4831 2017-02-12 02:25:00          CleanCook
## 4832 2017-02-12 02:25:00          CleanCook
## 4833 2017-02-12 02:25:00          CleanCook
## 4834 2017-02-12 02:25:00          CleanCook
## 4835 2017-02-12 02:25:00          CleanCook
## 4836 2017-02-12 02:25:00          CleanCook
## 4837 2017-02-12 02:25:00          CleanCook
## 4838 2017-02-12 02:25:00          CleanCook
## 4839 2017-02-12 02:25:00          CleanCook
## 4840 2017-02-12 02:25:00          CleanCook
## 4841 2017-02-12 02:25:00          CleanCook
## 4842 2017-02-12 02:25:00          CleanCook
## 4843 2017-02-12 02:25:00          CleanCook
## 4844 2017-02-12 02:25:00          CleanCook
## 4845 2017-02-12 02:25:00          CleanCook
## 4846 2017-02-12 02:25:00          CleanCook
## 4847 2017-02-12 02:25:00          CleanCook
## 4848 2017-02-12 02:25:00          CleanCook
## 4849 2017-02-12 02:25:00          CleanCook
## 4850 2017-02-12 02:25:00          CleanCook
## 4851 2017-02-12 02:25:00          CleanCook
## 4852 2017-02-12 02:25:00          CleanCook
## 4853 2017-02-12 02:25:00          CleanCook
## 4854 2017-02-12 02:25:00          CleanCook
## 4855 2017-02-12 02:25:00          CleanCook
## 4856 2017-02-12 02:25:00          CleanCook
## 4857 2017-02-12 02:25:00          CleanCook
## 4858 2017-02-12 02:25:00          CleanCook
## 4859 2017-02-12 03:28:00           Kerosene
## 4860 2017-02-12 03:28:00           Kerosene
## 4861 2017-02-12 03:28:00           Kerosene
## 4862 2017-02-12 03:28:00           Kerosene
## 4863 2017-02-12 03:28:00           Kerosene
## 4864 2017-02-12 03:28:00           Kerosene
## 4865 2017-02-12 03:28:00           Kerosene
## 4866 2017-02-12 03:28:00           Kerosene
## 4867 2017-02-12 03:28:00           Kerosene
## 4868 2017-02-12 03:28:00           Kerosene
## 4869 2017-02-12 03:28:00           Kerosene
## 4870 2017-02-12 03:28:00           Kerosene
## 4871 2017-02-12 03:28:00           Kerosene
## 4872 2017-02-12 03:28:00           Kerosene
## 4873 2017-02-12 03:28:00           Kerosene
## 4874 2017-02-12 03:28:00           Kerosene
## 4875 2017-02-12 03:28:00           Kerosene
## 4876 2017-02-12 03:28:00           Kerosene
## 4877 2017-02-12 03:28:00           Kerosene
## 4878 2017-02-12 03:28:00           Kerosene
## 4879 2017-02-12 03:28:00           Kerosene
## 4880 2017-02-12 03:28:00           Kerosene
## 4881 2017-02-12 03:28:00           Kerosene
## 4882 2017-02-12 03:28:00           Kerosene
## 4883 2017-02-12 03:28:00           Kerosene
## 4884 2017-03-12 09:31:00            Ambient
## 4885 2017-03-12 09:31:00            Ambient
## 4886 2017-03-12 09:31:00            Ambient
## 4887 2017-03-12 09:31:00            Ambient
## 4888 2017-03-12 09:31:00            Ambient
## 4889 2017-03-12 09:31:00            Ambient
## 4890 2017-03-12 09:31:00            Ambient
## 4891 2017-03-12 09:31:00            Ambient
## 4892 2017-03-12 09:31:00            Ambient
## 4893 2017-03-12 09:31:00            Ambient
## 4894 2017-03-12 09:31:00            Ambient
## 4895 2017-03-12 09:31:00            Ambient
## 4896 2017-03-12 09:31:00            Ambient
## 4897 2017-03-12 09:31:00            Ambient
## 4898 2017-03-12 09:31:00            Ambient
## 4899 2017-03-12 09:31:00            Ambient
## 4900 2017-03-12 09:31:00            Ambient
## 4901 2017-03-12 09:31:00            Ambient
## 4902 2017-03-12 09:31:00            Ambient
## 4903 2017-10-29 00:03:00            Ambient
## 4904 2017-10-21 00:06:00            Ambient
## 4905 2018-01-29 00:25:00           Kerosene
## 4906 2018-01-29 00:25:00           Kerosene
## 4907 2018-01-29 00:25:00           Kerosene
## 4908 2018-01-29 00:25:00           Kerosene
## 4909 2018-01-29 00:25:00           Kerosene
## 4910 2018-01-29 00:25:00           Kerosene
## 4911 2018-01-29 00:25:00           Kerosene
## 4912 2018-01-29 00:25:00           Kerosene
## 4913 2018-01-29 00:25:00           Kerosene
## 4914 2018-01-29 00:25:00           Kerosene
## 4915 2018-01-29 00:25:00           Kerosene
## 4916 2018-01-29 00:25:00           Kerosene
## 4917 2018-01-29 00:25:00           Kerosene
## 4918 2018-01-29 00:25:00           Kerosene
## 4919 2018-01-29 00:25:00           Kerosene
## 4920 2018-01-29 00:25:00           Kerosene
## 4921 2018-01-29 00:25:00           Kerosene
## 4922 2018-01-29 00:25:00           Kerosene
## 4923 2018-01-29 00:25:00           Kerosene
## 4924 2018-01-29 00:25:00           Kerosene
## 4925 2018-01-29 00:25:00           Kerosene
## 4926 2018-01-30 05:05:00          CleanCook
## 4927 2018-01-30 05:05:00          CleanCook
## 4928 2018-01-30 05:05:00          CleanCook
## 4929 2018-01-30 05:05:00          CleanCook
## 4930 2018-01-30 05:05:00          CleanCook
## 4931 2018-01-30 05:05:00          CleanCook
## 4932 2018-01-30 05:05:00          CleanCook
## 4933 2018-01-30 05:05:00          CleanCook
## 4934 2018-01-30 05:05:00          CleanCook
## 4935 2018-01-30 05:05:00          CleanCook
## 4936 2018-01-30 05:05:00          CleanCook
## 4937 2018-01-30 05:05:00          CleanCook
## 4938 2018-01-30 05:05:00          CleanCook
## 4939 2018-01-30 05:05:00          CleanCook
## 4940 2018-01-30 05:05:00          CleanCook
## 4941 2018-01-30 05:05:00          CleanCook
## 4942 2017-12-18 12:29:00          CleanCook
## 4943 2017-12-18 12:29:00          CleanCook
## 4944 2017-12-18 12:29:00          CleanCook
## 4945 2017-12-18 12:29:00          CleanCook
## 4946 2017-12-18 12:29:00          CleanCook
## 4947 2017-12-18 12:29:00          CleanCook
## 4948 2017-12-18 12:29:00          CleanCook
## 4949 2017-12-18 12:29:00          CleanCook
## 4950 2017-12-18 12:29:00          CleanCook
## 4951 2017-12-18 12:29:00          CleanCook
## 4952 2017-12-18 12:29:00          CleanCook
## 4953 2017-12-18 12:29:00          CleanCook
## 4954 2017-12-18 12:29:00          CleanCook
## 4955 2017-12-18 12:29:00          CleanCook
## 4956 2017-12-18 12:29:00          CleanCook
## 4957 2017-12-18 12:29:00          CleanCook
## 4958 2017-12-18 12:29:00          CleanCook
## 4959 2017-12-18 12:29:00          CleanCook
## 4960 2017-12-18 12:29:00          CleanCook
## 4961 2017-12-18 12:29:00          CleanCook
## 4962 2017-12-18 12:29:00          CleanCook
## 4963 2017-12-18 12:29:00          CleanCook
## 4964 2017-12-18 12:29:00          CleanCook
## 4965 2017-12-18 12:29:00          CleanCook
## 4966 2017-12-18 12:29:00          CleanCook
## 4967 2017-12-18 12:29:00          CleanCook
## 4968 2017-12-18 12:29:00          CleanCook
## 4969 2017-12-18 12:29:00          CleanCook
## 4970 2017-12-18 12:29:00          CleanCook
## 4971 2017-12-20 19:46:00           Kerosene
## 4972 2017-12-20 19:46:00           Kerosene
## 4973 2017-12-20 19:46:00           Kerosene
## 4974 2017-12-20 19:46:00           Kerosene
## 4975 2017-12-20 19:46:00           Kerosene
## 4976 2017-12-20 19:46:00           Kerosene
## 4977 2017-12-20 19:46:00           Kerosene
## 4978 2017-12-20 19:46:00           Kerosene
## 4979 2017-12-20 19:46:00           Kerosene
## 4980 2017-12-20 19:46:00           Kerosene
## 4981 2017-12-20 19:46:00           Kerosene
## 4982 2017-12-20 19:46:00           Kerosene
## 4983 2017-12-20 19:46:00           Kerosene
## 4984 2017-12-20 19:46:00           Kerosene
## 4985 2017-12-20 19:46:00           Kerosene
## 4986 2017-11-23 14:50:00           Kerosene
## 4987 2017-11-23 14:50:00           Kerosene
## 4988 2017-11-23 14:50:00           Kerosene
## 4989 2017-11-23 14:50:00           Kerosene
## 4990 2017-11-23 06:14:00          CleanCook
## 4991 2017-11-23 06:14:00          CleanCook
## 4992 2017-11-23 06:14:00          CleanCook
## 4993 2017-11-23 06:14:00          CleanCook
## 4994 2017-10-21 00:05:00            Ambient
## 4995 2017-10-22 06:47:00           Kerosene
## 4996 2017-10-22 06:47:00           Kerosene
## 4997 2017-10-22 06:47:00           Kerosene
## 4998 2017-10-22 06:47:00           Kerosene
## 4999 2017-10-22 06:47:00           Kerosene
## 5000 2017-10-22 06:47:00           Kerosene
## 5001 2017-10-22 06:47:00           Kerosene
## 5002 2017-10-22 06:47:00           Kerosene
## 5003 2017-10-22 06:47:00           Kerosene
## 5004 2017-10-22 06:47:00           Kerosene
## 5005 2017-10-22 06:47:00           Kerosene
## 5006 2017-10-22 06:47:00           Kerosene
## 5007 2017-10-22 06:47:00           Kerosene
## 5008 2017-10-22 06:47:00           Kerosene
## 5009 2017-10-22 06:47:00           Kerosene
## 5010 2017-10-22 06:47:00           Kerosene
## 5011 2017-10-22 06:47:00           Kerosene
## 5012 2017-10-22 06:47:00           Kerosene
## 5013 2017-10-22 06:47:00           Kerosene
## 5014 2017-10-22 06:47:00           Kerosene
## 5015 2017-10-22 06:47:00           Kerosene
## 5016 2017-10-22 06:47:00           Kerosene
## 5017 2017-10-22 06:47:00           Kerosene
## 5018 2017-10-22 06:47:00           Kerosene
## 5019 2017-10-23 08:24:00          CleanCook
## 5020 2017-10-23 08:24:00          CleanCook
## 5021 2017-10-23 08:24:00          CleanCook
## 5022 2017-10-23 08:24:00          CleanCook
## 5023 2017-10-07 12:36:00          CleanCook
## 5024 2017-10-07 12:36:00          CleanCook
## 5025 2017-10-07 12:36:00          CleanCook
## 5026 2017-10-07 12:36:00          CleanCook
## 5027 2017-10-07 12:36:00          CleanCook
## 5028 2017-02-12 03:09:00           Kerosene
## 5029 2017-02-12 03:09:00           Kerosene
## 5030 2017-02-12 03:09:00           Kerosene
## 5031 2017-02-12 03:09:00           Kerosene
## 5032 2017-02-12 03:09:00           Kerosene
## 5033 2017-02-12 03:09:00           Kerosene
## 5034 2017-02-12 03:09:00           Kerosene
## 5035 2017-02-12 03:09:00           Kerosene
## 5036 2017-02-12 03:09:00           Kerosene
## 5037 2017-02-12 03:09:00           Kerosene
## 5038 2017-02-12 03:09:00           Kerosene
## 5039 2017-02-12 03:09:00           Kerosene
## 5040 2017-02-12 03:09:00           Kerosene
## 5041 2017-02-12 03:09:00           Kerosene
## 5042 2017-02-12 03:09:00           Kerosene
## 5043 2017-02-12 03:09:00           Kerosene
## 5044 2017-02-12 03:09:00           Kerosene
## 5045 2017-02-12 03:09:00           Kerosene
## 5046 2017-02-12 03:09:00           Kerosene
## 5047 2017-02-12 03:09:00           Kerosene
## 5048 2017-02-12 03:09:00           Kerosene
## 5049 2017-02-12 03:09:00           Kerosene
## 5050 2017-02-12 03:09:00           Kerosene
## 5051 2017-02-12 03:09:00           Kerosene
## 5052 2017-02-12 03:09:00           Kerosene
## 5053 2017-02-12 03:09:00           Kerosene
## 5054 2017-02-12 03:09:00           Kerosene
## 5055 2017-02-12 03:09:00           Kerosene
## 5056 2017-02-12 03:09:00           Kerosene
## 5057 2017-02-12 03:09:00           Kerosene
## 5058 2017-02-12 03:09:00           Kerosene
## 5059 2017-02-12 03:09:00           Kerosene
## 5060 2017-02-12 03:09:00           Kerosene
## 5061 2017-02-12 03:09:00           Kerosene
## 5062 2017-02-12 03:09:00           Kerosene
## 5063 2017-02-12 03:09:00           Kerosene
## 5064 2017-02-12 03:09:00           Kerosene
## 5065 2017-02-12 03:09:00           Kerosene
## 5066 2017-02-12 03:09:00           Kerosene
## 5067 2017-02-12 03:09:00           Kerosene
## 5068 2017-02-12 03:09:00           Kerosene
## 5069 2017-02-12 03:09:00           Kerosene
## 5070 2017-02-12 03:09:00           Kerosene
## 5071 2017-02-12 03:09:00           Kerosene
## 5072 2017-02-12 03:09:00           Kerosene
## 5073 2017-02-12 03:09:00           Kerosene
## 5074 2017-02-12 03:09:00           Kerosene
## 5075 2017-02-12 03:09:00           Kerosene
## 5076 2017-02-12 03:09:00           Kerosene
## 5077 2017-02-12 03:09:00           Kerosene
## 5078 2017-02-12 03:09:00           Kerosene
## 5079 2017-02-12 03:09:00           Kerosene
## 5080 2017-02-12 03:09:00           Kerosene
## 5081 2017-02-12 03:09:00           Kerosene
## 5082 2017-02-12 03:09:00           Kerosene
## 5083 2017-02-12 03:09:00           Kerosene
## 5084 2017-02-12 03:09:00           Kerosene
## 5085 2017-02-12 03:09:00           Kerosene
## 5086 2017-02-12 03:09:00           Kerosene
## 5087 2017-02-12 03:09:00           Kerosene
## 5088 2017-02-12 03:09:00           Kerosene
## 5089 2017-02-12 03:09:00           Kerosene
## 5090 2017-02-12 03:09:00           Kerosene
## 5091 2017-02-12 03:09:00           Kerosene
## 5092 2017-02-12 03:09:00           Kerosene
## 5093 2017-02-12 03:09:00           Kerosene
## 5094 2017-02-12 03:09:00           Kerosene
## 5095 2017-02-12 03:09:00           Kerosene
## 5096 2017-02-12 03:09:00           Kerosene
## 5097 2017-02-12 03:09:00           Kerosene
## 5098 2017-02-12 03:09:00           Kerosene
## 5099 2017-02-12 03:09:00           Kerosene
## 5100 2017-02-12 03:09:00           Kerosene
## 5101 2017-02-12 03:09:00           Kerosene
## 5102 2017-02-12 03:09:00           Kerosene
## 5103 2017-02-12 03:09:00           Kerosene
## 5104 2017-02-12 03:09:00           Kerosene
## 5105 2017-02-12 03:09:00           Kerosene
## 5106 2017-02-12 03:09:00           Kerosene
## 5107 2017-02-12 03:09:00           Kerosene
## 5108 2017-02-12 03:09:00           Kerosene
## 5109 2017-02-12 03:09:00           Kerosene
## 5110 2017-02-12 03:09:00           Kerosene
## 5111 2017-02-12 03:09:00           Kerosene
## 5112 2017-02-12 03:09:00           Kerosene
## 5113 2017-02-12 03:09:00           Kerosene
## 5114 2017-02-12 03:09:00           Kerosene
## 5115 2017-02-12 00:16:00          CleanCook
## 5116 2017-02-12 00:16:00          CleanCook
## 5117 2017-02-12 00:16:00          CleanCook
## 5118 2017-02-12 00:16:00          CleanCook
## 5119 2017-02-12 00:16:00          CleanCook
## 5120 2017-02-12 00:16:00          CleanCook
## 5121 2017-02-12 00:16:00          CleanCook
## 5122 2017-02-12 00:16:00          CleanCook
## 5123 2017-02-12 00:16:00          CleanCook
## 5124 2017-02-12 00:16:00          CleanCook
## 5125 2017-02-12 00:16:00          CleanCook
## 5126 2017-02-12 00:16:00          CleanCook
## 5127 2017-02-12 00:16:00          CleanCook
## 5128 2017-02-12 00:16:00          CleanCook
## 5129 2017-02-12 00:16:00          CleanCook
## 5130 2017-02-12 00:16:00          CleanCook
## 5131 2017-02-12 00:16:00          CleanCook
## 5132 2017-02-12 00:16:00          CleanCook
## 5133 2017-02-12 00:16:00          CleanCook
## 5134 2017-02-12 00:16:00          CleanCook
## 5135 2017-02-12 00:16:00          CleanCook
## 5136 2017-02-12 00:16:00          CleanCook
## 5137 2017-02-12 00:16:00          CleanCook
## 5138 2017-02-12 00:16:00          CleanCook
## 5139 2017-02-12 00:16:00          CleanCook
## 5140 2017-02-12 00:16:00          CleanCook
## 5141 2017-02-12 00:16:00          CleanCook
## 5142 2017-02-12 00:16:00          CleanCook
## 5143 2017-02-12 00:16:00          CleanCook
## 5144 2017-02-12 00:16:00          CleanCook
## 5145 2017-02-12 00:16:00          CleanCook
## 5146 2017-02-12 00:16:00          CleanCook
## 5147 2017-02-12 00:16:00          CleanCook
## 5148 2017-02-12 00:16:00          CleanCook
## 5149 2017-02-12 00:16:00          CleanCook
## 5150 2017-02-12 00:16:00          CleanCook
## 5151 2017-02-12 00:16:00          CleanCook
## 5152 2017-02-12 00:16:00          CleanCook
## 5153 2017-02-12 00:16:00          CleanCook
## 5154 2017-02-12 00:16:00          CleanCook
## 5155 2017-02-12 00:16:00          CleanCook
## 5156 2017-02-12 00:16:00          CleanCook
## 5157 2017-02-12 00:16:00          CleanCook
## 5158 2017-02-12 00:16:00          CleanCook
## 5159 2017-02-12 00:16:00          CleanCook
## 5160 2017-02-12 00:16:00          CleanCook
## 5161 2017-02-12 00:16:00          CleanCook
## 5162 2017-02-12 00:16:00          CleanCook
## 5163 2017-02-12 00:16:00          CleanCook
## 5164 2017-02-12 00:16:00          CleanCook
## 5165 2017-11-12 08:46:00          CleanCook
## 5166 2017-11-12 08:46:00          CleanCook
## 5167 2018-01-31 14:01:00          CleanCook
## 5168 2018-01-31 14:01:00          CleanCook
## 5169 2018-01-31 14:01:00          CleanCook
## 5170 2018-01-31 14:01:00          CleanCook
## 5171 2018-01-07 09:48:00           Kerosene
## 5172 2018-01-07 09:48:00           Kerosene
## 5173 2018-01-07 09:48:00           Kerosene
## 5174 2018-01-07 09:48:00           Kerosene
## 5175 2018-01-07 09:48:00           Kerosene
## 5176 2018-01-07 09:48:00           Kerosene
## 5177 2018-01-07 09:48:00           Kerosene
## 5178 2018-01-07 09:48:00           Kerosene
## 5179 2018-01-07 09:48:00           Kerosene
## 5180 2018-01-07 09:48:00           Kerosene
## 5181 2018-01-07 09:48:00           Kerosene
## 5182 2018-01-07 09:48:00           Kerosene
## 5183 2018-01-07 09:48:00           Kerosene
## 5184 2018-01-07 09:48:00           Kerosene
## 5185 2018-01-07 09:48:00           Kerosene
## 5186 2018-01-07 09:48:00           Kerosene
## 5187 2018-01-07 09:48:00           Kerosene
## 5188 2018-01-07 09:48:00           Kerosene
## 5189 2018-01-07 09:48:00           Kerosene
## 5190 2018-01-07 09:48:00           Kerosene
## 5191 2018-01-07 09:48:00           Kerosene
## 5192 2018-01-07 09:48:00           Kerosene
## 5193 2018-01-07 09:48:00           Kerosene
## 5194 2018-01-07 09:48:00           Kerosene
## 5195 2018-01-07 09:48:00           Kerosene
## 5196 2018-01-07 09:48:00           Kerosene
## 5197 2018-01-07 09:48:00           Kerosene
## 5198 2018-01-07 09:48:00           Kerosene
## 5199 2018-01-07 09:48:00           Kerosene
## 5200 2018-01-07 09:48:00           Kerosene
## 5201 2018-01-07 09:48:00           Kerosene
## 5202 2018-01-07 09:48:00           Kerosene
## 5203 2018-01-07 09:48:00           Kerosene
## 5204 2018-01-07 09:48:00           Kerosene
## 5205 2018-01-07 09:48:00           Kerosene
## 5206 2018-01-07 09:48:00           Kerosene
## 5207 2017-12-13 09:38:00           Kerosene
## 5208 2017-12-13 09:38:00           Kerosene
## 5209 2017-12-13 09:38:00           Kerosene
## 5210 2017-12-13 09:38:00           Kerosene
## 5211 2017-12-13 09:38:00           Kerosene
## 5212 2017-12-13 09:38:00           Kerosene
## 5213 2017-12-13 09:38:00           Kerosene
## 5214 2017-12-13 09:38:00           Kerosene
## 5215 2017-12-13 09:38:00           Kerosene
## 5216 2017-12-13 09:38:00           Kerosene
## 5217 2017-12-13 09:38:00           Kerosene
## 5218 2017-12-13 09:38:00           Kerosene
## 5219 2017-12-13 09:38:00           Kerosene
## 5220 2017-12-13 09:38:00           Kerosene
## 5221 2017-12-13 09:38:00           Kerosene
## 5222 2017-12-13 09:38:00           Kerosene
## 5223 2017-12-13 09:38:00           Kerosene
## 5224 2017-12-13 09:38:00           Kerosene
## 5225 2017-12-13 09:38:00           Kerosene
## 5226 2017-12-13 09:38:00           Kerosene
## 5227 2017-12-13 09:38:00           Kerosene
## 5228 2017-12-13 09:38:00           Kerosene
## 5229 2017-12-13 09:38:00           Kerosene
## 5230 2017-12-13 09:38:00           Kerosene
## 5231 2017-12-13 09:38:00           Kerosene
## 5232 2017-12-13 09:38:00           Kerosene
## 5233 2017-12-15 15:46:00          CleanCook
## 5234 2017-12-15 15:46:00          CleanCook
## 5235 2017-12-15 15:46:00          CleanCook
## 5236 2017-12-15 15:46:00          CleanCook
## 5237 2017-12-15 15:46:00          CleanCook
## 5238 2017-12-15 15:46:00          CleanCook
## 5239 2017-12-15 15:46:00          CleanCook
## 5240 2017-12-15 15:46:00          CleanCook
## 5241 2017-12-15 15:46:00          CleanCook
## 5242 2017-12-15 15:46:00          CleanCook
## 5243 2017-12-15 15:46:00          CleanCook
## 5244 2017-12-15 15:46:00          CleanCook
## 5245 2017-12-15 15:46:00          CleanCook
## 5246 2017-11-24 14:58:00          CleanCook
## 5247 2017-11-24 14:58:00          CleanCook
## 5248 2017-11-24 14:58:00          CleanCook
## 5249 2017-02-12 00:28:00          CleanCook
## 5250 2017-02-12 00:28:00          CleanCook
## 5251 2017-02-12 00:28:00          CleanCook
## 5252 2017-02-12 00:28:00          CleanCook
## 5253 2017-02-12 00:28:00          CleanCook
## 5254 2017-02-12 00:28:00          CleanCook
## 5255 2017-02-12 00:28:00          CleanCook
## 5256 2017-02-12 00:28:00          CleanCook
## 5257 2017-02-12 00:28:00          CleanCook
## 5258 2017-02-12 00:28:00          CleanCook
## 5259 2017-02-12 00:28:00          CleanCook
## 5260 2017-02-12 00:28:00          CleanCook
## 5261 2017-02-12 00:28:00          CleanCook
## 5262 2017-02-12 00:28:00          CleanCook
## 5263 2017-02-12 00:28:00          CleanCook
## 5264 2017-02-12 00:28:00          CleanCook
## 5265 2017-02-12 00:28:00          CleanCook
## 5266 2017-02-12 00:28:00          CleanCook
## 5267 2017-02-12 00:28:00          CleanCook
## 5268 2017-02-12 00:28:00          CleanCook
## 5269 2017-02-12 00:28:00          CleanCook
## 5270 2017-02-12 00:28:00          CleanCook
## 5271 2017-02-12 00:28:00          CleanCook
## 5272 2017-02-12 00:28:00          CleanCook
## 5273 2017-02-12 00:28:00          CleanCook
## 5274 2017-02-12 00:28:00          CleanCook
## 5275 2017-02-12 00:28:00          CleanCook
## 5276 2017-02-12 00:28:00          CleanCook
## 5277 2017-02-12 00:28:00          CleanCook
## 5278 2017-02-12 00:28:00          CleanCook
## 5279 2017-02-12 00:28:00          CleanCook
## 5280 2017-02-12 00:28:00          CleanCook
## 5281 2017-02-12 00:28:00          CleanCook
## 5282 2017-02-12 00:28:00          CleanCook
## 5283 2017-02-12 00:28:00          CleanCook
## 5284 2017-02-12 00:28:00          CleanCook
## 5285 2017-10-21 09:13:00                LPG
## 5286 2017-10-21 09:13:00                LPG
## 5287 2017-10-21 09:13:00                LPG
## 5288 2017-10-21 09:13:00                LPG
## 5289 2017-10-21 09:13:00                LPG
## 5290 2017-10-21 09:13:00                LPG
## 5291 2017-10-21 09:13:00                LPG
## 5292 2017-10-21 09:13:00                LPG
## 5293 2017-10-21 09:13:00                LPG
## 5294 2017-10-21 09:13:00                LPG
## 5295 2017-10-21 09:13:00                LPG
## 5296 2017-10-21 09:13:00                LPG
## 5297 2017-10-21 09:13:00                LPG
## 5298 2017-10-21 09:13:00                LPG
## 5299 2017-10-21 09:13:00                LPG
## 5300 2017-10-21 09:13:00                LPG
## 5301 2017-10-21 09:13:00                LPG
## 5302 2017-10-21 09:13:00                LPG
## 5303 2017-10-21 09:13:00                LPG
## 5304 2017-10-21 09:13:00                LPG
## 5305 2017-10-21 09:13:00                LPG
## 5306 2017-10-21 09:13:00                LPG
## 5307 2017-10-21 09:13:00                LPG
## 5308 2017-10-21 09:13:00                LPG
## 5309 2017-10-21 09:13:00                LPG
## 5310 2017-10-21 09:13:00                LPG
## 5311 2017-10-21 09:13:00                LPG
## 5312 2017-10-21 09:13:00                LPG
## 5313 2017-10-21 09:19:00          CleanCook
## 5314 2017-10-21 09:19:00          CleanCook
## 5315 2017-10-21 09:19:00          CleanCook
## 5316 2017-10-21 09:19:00          CleanCook
## 5317 2017-10-21 09:19:00          CleanCook
## 5318 2017-10-21 09:19:00          CleanCook
## 5319 2017-10-21 09:19:00          CleanCook
## 5320 2017-10-21 09:19:00          CleanCook
## 5321 2017-10-21 09:19:00          CleanCook
## 5322 2017-10-21 09:19:00          CleanCook
## 5323 2017-10-21 09:19:00          CleanCook
## 5324 2017-10-21 09:19:00          CleanCook
## 5325 2017-10-21 09:19:00          CleanCook
## 5326 2017-10-21 09:19:00          CleanCook
## 5327 2017-10-21 09:19:00          CleanCook
## 5328 2017-10-06 07:25:00          CleanCook
## 5329 2017-10-06 07:25:00          CleanCook
## 5330 2017-10-06 07:25:00          CleanCook
## 5331 2017-10-06 07:25:00          CleanCook
## 5332 2017-10-06 07:25:00          CleanCook
## 5333 2017-10-06 07:25:00          CleanCook
## 5334 2017-10-06 07:25:00          CleanCook
## 5335 2017-10-06 07:25:00          CleanCook
## 5336 2017-10-06 07:25:00          CleanCook
## 5337 2017-10-06 07:25:00          CleanCook
## 5338 2017-10-06 07:25:00          CleanCook
## 5339 2017-10-06 07:25:00          CleanCook
## 5340 2017-10-06 07:25:00          CleanCook
## 5341 2017-10-06 07:25:00          CleanCook
## 5342 2017-10-06 07:25:00          CleanCook
## 5343 2017-10-06 07:25:00          CleanCook
## 5344 2017-10-06 07:25:00          CleanCook
## 5345 2017-10-06 07:25:00          CleanCook
## 5346 2017-10-06 07:25:00          CleanCook
ok_cooking_events_padded <- data.frame(stringsAsFactors = FALSE)
#Replace NA with 0.
#dplyr_if_else   <- function(x) { mutate_all(x, funs(ifelse(is.na(.), 0, .))) }
uniquers <- unique(ok_cooking_events$fullsumsarizer_filename)
for (i in 1:length(unique(ok_cooking_events$filename))) {

        temp <- dplyr::filter(ok_cooking_events,uniquers[i]==fullsumsarizer_filename) %>%
                dplyr::arrange(start_time)
        
    if (dim(temp)[1]>0) {    
        # generate a time sequence with 1 day intervals to fill in
        # missing dates
        all.dates <- data.frame(dates = seq(temp$datetime_placed[1], temp$datetime_removal[1], by="day"),stringsAsFactors = FALSE) %>%
                  dplyr::mutate(day_month_year = as.Date(dates)) %>%
                  dplyr::filter(!day_month_year %in% temp$day_month_year) #Get rid of extra days
        
        # Convert all dates to a data frame. Note that we're putting
        # the new dates into a column called "start_time" just like the
        # original column. This will allow us to merge the data.
        all.dates.frame <- data.frame(list(start_time=all.dates$dates),list(end_time=all.dates$dates), 
                                      list(day_month_year = as.Date(all.dates$dates)),
                                      list(week_year = format(all.dates$dates,"%V-%y")),
                                      list(day_of_week = weekdays(all.dates$dates)),stringsAsFactors = FALSE) %>%
                  dplyr::mutate(month_year = format(start_time,"%b-%y")) %>%
                  dplyr::mutate(month_year = factor(month_year, unique(month_year), ordered=TRUE))
                         

        # Merge the two datasets: the full dates and original data
        merged.data <- merge(all.dates.frame, temp, all=T) %>%
            tidyr::fill(filename,fullsumsarizer_filename,HHID,stove,logger_id,group,
                        stove_descriptions,logging_duration_days,datetime_placed,
                        datetime_removal,units,comments,
                        start_hour,.direction = c("up")) %>%
            tidyr::fill(filename,fullsumsarizer_filename,HHID,stove,logger_id,group,
                        stove_descriptions,logging_duration_days,datetime_placed,
                        datetime_removal,units,comments,
                        start_hour,.direction = c("down"))  %>%
            dplyr::mutate(use_flag = replace(use_flag, is.na(use_flag), FALSE)) 
        
        
        merged.data %>% mutate_if(is.factor, as.character) -> merged.data

        merged.data$use_flag[is.na(merged.data$use_flag)] <- FALSE
        merged.data[is.na(merged.data)] <- 0
        # The above merge set the new observations to NA.
        # To replace those with a 0, we must first find all the rows
        # and then assign 0 to them.
        #merged.data <-dplyr_if_else(merged.data)

        ok_cooking_events_padded <- rbind(ok_cooking_events_padded,merged.data)
    }
}
    #time format was messed up somehow in making the padded set, correct it here.
    ok_cooking_events_padded <- dplyr::mutate(ok_cooking_events_padded,datetime_removal = as.POSIXct(datetime_removal,origin = "1970-1-1", tz = "GMT")) %>%
      dplyr::arrange((start_time)) %>%
      dplyr::mutate(month_year = format(start_time,"%b-%y")) %>%
      dplyr::mutate(month_year = factor(month_year, unique(month_year), ordered=TRUE)) %>%
      dplyr::mutate(qc = "ok") #New qc values default to zero during padding, but they are all already qc-filtered, so reset to TRUE

    #Finish filtering the dataset.  Kept 'bad' and short events to get the full padded dataset.  Now can remove them
    ok_cooking_events <- dplyr::filter(ok_cooking_events,duration_minutes>cooking_duration_minimum | use_flag==FALSE) 
    
    #Remove household-stoves that have less than this many days... do it to the padded data set or both?  Should be done somehow for the usage fraction results
    #dplyr::mutate(qc = if_else(logging_duration_days < total_days_logged_minimum,"short_total_logging_duration",qc)) %>% # Only keep data from house-stove combos with more than this number of days of data.

Summarize data

ok_datasummary <- summarise_all(ok_cooking_events,funs(n_distinct(.)))

#Summarize use for each household and stove.
stats_grouped_by_hhid_stove <- dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID,group) %>%
    # calculate events per day for each household and stove.  Can then take summary stats of those.
    dplyr::summarise(events_per_day=sum(use_flag,na.rm=TRUE)/length(unique(day_month_year)),
                     minutes_per_day_stove_hhid = sum(duration_minutes,na.rm=TRUE)/length(unique(day_month_year)),
                     minutes_per_event_stove_hhid = sum(duration_minutes,na.rm=TRUE)/sum(use_flag,na.rm=TRUE),
                     days_logged_per_group_by_stove=sum(length(unique(day_month_year)), na.rm = TRUE),
                     events = n()) 
kable(stats_grouped_by_hhid_stove, digits=2)
stove_descriptions HHID group events_per_day minutes_per_day_stove_hhid minutes_per_event_stove_hhid days_logged_per_group_by_stove events
CleanCook AKO_01B AKO 0.00 0.00 NaN 13 13
CleanCook AKO_02B AKO 1.46 33.85 23.16 13 25
CleanCook AKO_03B AKO 3.38 78.46 23.18 13 44
CleanCook AKO_04 AKO 0.32 8.74 27.67 95 109
CleanCook AKO_05B AKO 0.75 38.75 51.67 8 10
CleanCook AKO_06B AKO 0.00 0.00 NaN 13 13
CleanCook AKO_09 AKO 1.07 35.56 33.33 45 71
CleanCook AKO_10 AKO 1.37 39.40 28.70 67 117
CleanCook MUS_02 MUS 0.33 7.53 22.59 81 95
CleanCook MUS_03 MUS 0.24 3.08 12.63 78 87
CleanCook MUS_04 MUS 0.40 9.35 23.24 92 106
CleanCook MUS_05 MUS 1.48 41.67 28.17 48 85
CleanCook MUS_06 MUS 0.71 58.77 83.07 106 161
CleanCook MUS_07 MUS 1.21 42.42 35.04 95 145
CleanCook MUS_08 MUS 0.75 18.67 25.00 83 120
CleanCook MUS_09 MUS 1.70 45.83 26.89 115 224
CleanCook MUS_10 MUS 1.27 34.43 27.08 70 140
CleanCook SHO_01 SHO 1.08 31.45 29.15 76 115
CleanCook SHO_02 SHO 0.83 24.33 29.20 60 81
CleanCook SHO_05 SHO 0.70 15.06 21.64 79 115
CleanCook SHO_06 SHO 0.45 11.63 26.10 92 108
CleanCook SHO_07 SHO 0.89 27.55 31.06 53 66
CleanCook SHO_09 SHO 0.36 6.43 18.00 70 81
Kerosene AKO_01B AKO 1.46 74.62 51.05 13 20
Kerosene AKO_02B AKO 0.54 28.46 52.86 13 20
Kerosene AKO_03B AKO 1.85 186.92 101.25 13 24
Kerosene AKO_04 AKO 0.90 47.74 52.86 93 119
Kerosene AKO_05B AKO 0.42 20.83 50.00 12 12
Kerosene AKO_06B AKO 1.08 73.08 67.86 13 17
Kerosene AKO_09 AKO 0.74 52.80 71.35 50 72
Kerosene AKO_10 AKO 2.36 176.94 74.94 108 262
Kerosene MUS_02 MUS 3.12 188.31 60.34 124 389
Kerosene MUS_03 MUS 0.75 49.58 66.11 24 33
Kerosene MUS_04 MUS 0.94 62.62 66.58 84 110
Kerosene MUS_05 MUS 2.05 78.64 38.44 66 142
Kerosene MUS_06 MUS 2.19 229.82 104.81 109 260
Kerosene MUS_07 MUS 0.77 41.00 53.15 70 92
Kerosene MUS_08 MUS 2.03 121.39 59.86 72 156
Kerosene MUS_09 MUS 1.28 67.72 52.72 123 185
Kerosene MUS_10 MUS 2.58 180.33 70.00 92 273
Kerosene SHO_01 SHO 1.86 113.33 61.03 84 165
Kerosene SHO_02 SHO 1.76 159.73 90.76 75 141
Kerosene SHO_05 SHO 3.94 275.51 69.95 49 193
Kerosene SHO_06 SHO 0.00 0.00 NaN 84 84
Kerosene SHO_07 SHO 0.26 11.16 43.64 43 44
Kerosene SHO_09 SHO 1.39 75.42 54.27 59 94
LPG AKO_04 AKO 1.14 31.40 27.55 93 136
LPG SHO_01 SHO 0.35 7.82 22.63 55 62
LPG SHO_02 SHO 0.00 0.00 NaN 9 9
LPG SHO_05 SHO 0.63 18.96 30.24 67 80
LPG SHO_06 SHO 1.06 45.88 43.18 80 112
#Calculate summary for the overall groups and stoves from the household-wise results above.  Should this be weighted in case one hh has way more data?
stats_by_stove_group <- dplyr::group_by(stats_grouped_by_hhid_stove,stove_descriptions,group) %>%
    dplyr::summarise(mean_events_per_day=mean(events_per_day, na.rm = TRUE),
                       median_events_per_day=median(events_per_day, na.rm = TRUE),
                       sd_events_per_day=sd(events_per_day, na.rm = TRUE),
                       mean_minutes_per_day_stove_hhid=mean(minutes_per_day_stove_hhid, na.rm = TRUE),
                       median_minutes_per_day_stove_hhid=median(minutes_per_day_stove_hhid, na.rm = TRUE),
                       sd_minutes_per_day_stove_hhid=sd(minutes_per_day_stove_hhid, na.rm = TRUE),
                       mean_days_logged=mean(days_logged_per_group_by_stove, na.rm = TRUE),
                       house_stoves=n()) %>%
    dplyr::filter(!is.na(stove_descriptions)) 
kable(stats_by_stove_group, digits=2)
stove_descriptions group mean_events_per_day median_events_per_day sd_events_per_day mean_minutes_per_day_stove_hhid median_minutes_per_day_stove_hhid sd_minutes_per_day_stove_hhid mean_days_logged house_stoves
CleanCook AKO 1.04 0.91 1.11 29.34 34.70 26.21 33.38 8
CleanCook MUS 0.90 0.75 0.53 29.08 34.43 19.89 85.33 9
CleanCook SHO 0.72 0.76 0.27 19.41 19.70 9.83 71.67 6
Kerosene AKO 1.17 0.99 0.68 82.67 62.94 64.13 39.38 8
Kerosene MUS 1.75 2.03 0.85 113.27 78.64 69.73 84.89 9
Kerosene SHO 1.53 1.57 1.41 105.86 94.38 102.80 65.67 6
LPG AKO 1.14 1.14 NA 31.40 31.40 NA 93.00 1
LPG SHO 0.51 0.49 0.45 18.16 13.39 20.05 52.75 4
#Calculate summary for the overall stoves from the household-wise results above.  Should this be weighted in case one hh has way more data?
#Same as above but without the group, just by stove.
stats_by_stove <- dplyr::group_by(stats_grouped_by_hhid_stove,stove_descriptions) %>%
    dplyr::summarise(mean_events_per_day=mean(events_per_day, na.rm = TRUE),
                       median_events_per_day=median(events_per_day, na.rm = TRUE),
                       sd_events_per_day=sd(events_per_day, na.rm = TRUE),
                       mean_minutes_per_day_stove_hhid=mean(minutes_per_day_stove_hhid, na.rm = TRUE),
                       median_minutes_per_day_stove_hhid=median(minutes_per_day_stove_hhid, na.rm = TRUE),
                       sd_minutes_per_day_stove_hhid=sd(minutes_per_day_stove_hhid, na.rm = TRUE),
                        house_stoves=n()) %>%
    dplyr::filter(!is.na(stove_descriptions)) 
kable(stats_by_stove, digits=2)
stove_descriptions mean_events_per_day median_events_per_day sd_events_per_day mean_minutes_per_day_stove_hhid median_minutes_per_day_stove_hhid sd_minutes_per_day_stove_hhid house_stoves
CleanCook 0.90 0.75 0.73 26.65 27.55 20.09 23
Kerosene 1.49 1.39 0.96 100.69 74.62 75.29 23
LPG 0.63 0.63 0.48 20.81 18.96 18.34 5
#Summarize use for each household and stove, by month
stats_grouped_by_hhid_stove_month <- dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID,group,month_year) %>%
    # calculate events per day for each household and stove.  Can then take summary stats of those.
    dplyr::summarise(events_per_day=sum(use_flag,na.rm=TRUE)/length(unique(day_month_year)),
                     minutes_per_day_stove_hhid = sum(duration_minutes,na.rm=TRUE)/length(unique(day_month_year)),
                     minutes_per_event_stove_hhid = sum(duration_minutes,na.rm=TRUE)/sum(use_flag,na.rm=TRUE),
                     days_logged_per_group_by_stove=sum(length(unique(day_month_year)), na.rm = TRUE))
kable(stats_grouped_by_hhid_stove_month, digits=2)
stove_descriptions HHID group month_year events_per_day minutes_per_day_stove_hhid minutes_per_event_stove_hhid days_logged_per_group_by_stove
CleanCook AKO_01B AKO Jan-18 0.00 0.00 NaN 11
CleanCook AKO_01B AKO Feb-18 0.00 0.00 NaN 2
CleanCook AKO_02B AKO Jan-18 1.27 39.09 30.71 11
CleanCook AKO_02B AKO Feb-18 2.50 5.00 2.00 2
CleanCook AKO_03B AKO Jan-18 3.27 77.27 23.61 11
CleanCook AKO_03B AKO Feb-18 4.00 85.00 21.25 2
CleanCook AKO_04 AKO Oct-17 0.63 10.53 16.67 19
CleanCook AKO_04 AKO Nov-17 0.00 0.00 NaN 12
CleanCook AKO_04 AKO Dec-17 0.00 0.00 NaN 22
CleanCook AKO_04 AKO Jan-18 0.00 0.00 NaN 30
CleanCook AKO_04 AKO Feb-18 1.50 52.50 35.00 12
CleanCook AKO_05B AKO Jan-18 0.67 41.67 62.50 6
CleanCook AKO_05B AKO Feb-18 1.00 30.00 30.00 2
CleanCook AKO_06B AKO Jan-18 0.00 0.00 NaN 11
CleanCook AKO_06B AKO Feb-18 0.00 0.00 NaN 2
CleanCook AKO_09 AKO Oct-17 2.55 62.73 24.64 11
CleanCook AKO_09 AKO Nov-17 0.00 0.00 NaN 1
CleanCook AKO_09 AKO Dec-17 0.68 36.84 53.85 19
CleanCook AKO_09 AKO Feb-18 0.50 15.00 30.00 14
CleanCook AKO_10 AKO Oct-17 2.43 81.43 33.53 14
CleanCook AKO_10 AKO Nov-17 0.00 0.00 NaN 1
CleanCook AKO_10 AKO Dec-17 1.04 21.92 21.11 26
CleanCook AKO_10 AKO Jan-18 1.42 35.00 24.71 12
CleanCook AKO_10 AKO Feb-18 1.00 36.43 36.43 14
CleanCook MUS_02 MUS Oct-17 1.27 32.73 25.71 11
CleanCook MUS_02 MUS Nov-17 0.62 11.90 19.23 21
CleanCook MUS_02 MUS Dec-17 0.00 0.00 NaN 31
CleanCook MUS_02 MUS Jan-18 0.00 0.00 NaN 18
CleanCook MUS_03 MUS Oct-17 0.92 12.50 13.64 12
CleanCook MUS_03 MUS Nov-17 0.80 9.00 11.25 10
CleanCook MUS_03 MUS Dec-17 0.00 0.00 NaN 19
CleanCook MUS_03 MUS Jan-18 0.00 0.00 NaN 31
CleanCook MUS_03 MUS Feb-18 0.00 0.00 NaN 6
CleanCook MUS_04 MUS Oct-17 0.94 24.38 26.00 16
CleanCook MUS_04 MUS Nov-17 0.94 18.75 20.00 16
CleanCook MUS_04 MUS Dec-17 0.12 3.20 26.67 25
CleanCook MUS_04 MUS Jan-18 0.00 0.00 NaN 30
CleanCook MUS_04 MUS Feb-18 0.80 18.00 22.50 5
CleanCook MUS_05 MUS Oct-17 2.00 65.71 32.86 7
CleanCook MUS_05 MUS Nov-17 1.38 36.25 26.36 24
CleanCook MUS_05 MUS Dec-17 1.38 46.92 33.89 13
CleanCook MUS_05 MUS Jan-18 1.50 15.00 10.00 4
CleanCook MUS_06 MUS Oct-17 3.78 332.78 88.09 18
CleanCook MUS_06 MUS Nov-17 0.00 0.00 NaN 28
CleanCook MUS_06 MUS Dec-17 0.37 12.63 34.29 19
CleanCook MUS_06 MUS Jan-18 0.00 0.00 NaN 24
CleanCook MUS_06 MUS Feb-18 0.00 0.00 NaN 17
CleanCook MUS_07 MUS Oct-17 0.73 30.00 40.91 15
CleanCook MUS_07 MUS Nov-17 1.17 32.50 27.86 24
CleanCook MUS_07 MUS Dec-17 1.28 49.31 38.65 29
CleanCook MUS_07 MUS Jan-18 1.76 63.33 35.95 21
CleanCook MUS_07 MUS Feb-18 0.33 6.67 20.00 6
CleanCook MUS_08 MUS Oct-17 0.75 19.00 25.33 20
CleanCook MUS_08 MUS Nov-17 0.00 0.00 NaN 28
CleanCook MUS_08 MUS Dec-17 0.83 17.83 21.58 23
CleanCook MUS_08 MUS Jan-18 1.00 7.50 7.50 4
CleanCook MUS_08 MUS Feb-18 3.00 91.25 30.42 8
CleanCook MUS_09 MUS Oct-17 2.90 75.00 25.86 20
CleanCook MUS_09 MUS Nov-17 1.45 46.36 31.88 22
CleanCook MUS_09 MUS Dec-17 1.45 31.29 21.56 31
CleanCook MUS_09 MUS Jan-18 1.15 38.46 33.33 26
CleanCook MUS_09 MUS Feb-18 1.94 48.75 25.16 16
CleanCook MUS_10 MUS Oct-17 2.25 75.00 33.33 4
CleanCook MUS_10 MUS Nov-17 0.95 27.00 28.42 20
CleanCook MUS_10 MUS Dec-17 1.19 30.48 25.60 21
CleanCook MUS_10 MUS Jan-18 1.44 37.20 25.83 25
CleanCook SHO_01 SHO Oct-17 1.33 39.05 29.29 21
CleanCook SHO_01 SHO Nov-17 1.24 43.33 35.00 21
CleanCook SHO_01 SHO Dec-17 0.77 25.38 33.00 13
CleanCook SHO_01 SHO Jan-18 0.78 17.78 22.86 9
CleanCook SHO_01 SHO Feb-18 0.92 14.17 15.45 12
CleanCook SHO_02 SHO Oct-17 1.29 38.57 30.00 7
CleanCook SHO_02 SHO Nov-17 0.86 26.67 31.11 21
CleanCook SHO_02 SHO Dec-17 1.08 25.38 23.57 13
CleanCook SHO_02 SHO Jan-18 0.53 17.65 33.33 17
CleanCook SHO_02 SHO Feb-18 0.00 0.00 NaN 2
CleanCook SHO_05 SHO Oct-17 0.83 50.00 60.00 6
CleanCook SHO_05 SHO Nov-17 0.77 16.00 20.87 30
CleanCook SHO_05 SHO Dec-17 0.30 7.33 24.44 30
CleanCook SHO_05 SHO Jan-18 2.00 27.14 13.57 7
CleanCook SHO_05 SHO Feb-18 0.67 0.00 0.00 6
CleanCook SHO_06 SHO Oct-17 0.81 14.76 18.24 21
CleanCook SHO_06 SHO Nov-17 0.63 22.22 35.29 27
CleanCook SHO_06 SHO Dec-17 0.25 5.71 22.86 28
CleanCook SHO_06 SHO Jan-18 0.00 0.00 NaN 3
CleanCook SHO_06 SHO Feb-18 0.00 0.00 NaN 13
CleanCook SHO_07 SHO Oct-17 0.71 17.86 25.00 14
CleanCook SHO_07 SHO Nov-17 0.86 17.14 20.00 7
CleanCook SHO_07 SHO Dec-17 0.57 14.29 25.00 7
CleanCook SHO_07 SHO Jan-18 1.67 69.17 41.50 12
CleanCook SHO_07 SHO Feb-18 0.54 12.31 22.86 13
CleanCook SHO_09 SHO Oct-17 0.50 12.73 25.45 22
CleanCook SHO_09 SHO Nov-17 0.00 0.00 NaN 15
CleanCook SHO_09 SHO Dec-17 0.50 7.14 14.29 14
CleanCook SHO_09 SHO Jan-18 0.28 3.89 14.00 18
CleanCook SHO_09 SHO Feb-18 2.00 0.00 0.00 1
Kerosene AKO_01B AKO Jan-18 1.55 82.73 53.53 11
Kerosene AKO_01B AKO Feb-18 1.00 30.00 30.00 2
Kerosene AKO_02B AKO Jan-18 0.64 33.64 52.86 11
Kerosene AKO_02B AKO Feb-18 0.00 0.00 NaN 2
Kerosene AKO_03B AKO Jan-18 1.91 195.45 102.38 11
Kerosene AKO_03B AKO Feb-18 1.50 140.00 93.33 2
Kerosene AKO_04 AKO Oct-17 0.81 39.38 48.46 16
Kerosene AKO_04 AKO Nov-17 0.73 34.55 47.50 11
Kerosene AKO_04 AKO Dec-17 0.57 28.70 50.77 23
Kerosene AKO_04 AKO Jan-18 1.28 63.10 49.46 29
Kerosene AKO_04 AKO Feb-18 0.93 67.14 72.31 14
Kerosene AKO_05B AKO Jan-18 0.36 20.00 55.00 11
Kerosene AKO_05B AKO Feb-18 1.00 30.00 30.00 1
Kerosene AKO_06B AKO Jan-18 1.09 70.00 64.17 11
Kerosene AKO_06B AKO Feb-18 1.00 90.00 90.00 2
Kerosene AKO_09 AKO Oct-17 1.90 135.00 71.05 10
Kerosene AKO_09 AKO Nov-17 0.00 0.00 NaN 11
Kerosene AKO_09 AKO Dec-17 0.64 25.45 40.00 11
Kerosene AKO_09 AKO Jan-18 0.69 63.12 91.82 16
Kerosene AKO_09 AKO Feb-18 0.00 0.00 NaN 2
Kerosene AKO_10 AKO Oct-17 1.83 106.09 58.10 23
Kerosene AKO_10 AKO Nov-17 3.55 225.45 63.59 11
Kerosene AKO_10 AKO Dec-17 2.40 185.33 77.22 30
Kerosene AKO_10 AKO Jan-18 2.33 216.00 92.57 30
Kerosene AKO_10 AKO Feb-18 2.29 153.57 67.19 14
Kerosene MUS_02 MUS Oct-17 2.71 124.29 45.79 21
Kerosene MUS_02 MUS Nov-17 2.41 116.67 48.46 27
Kerosene MUS_02 MUS Dec-17 3.58 276.77 77.30 31
Kerosene MUS_02 MUS Jan-18 3.66 225.86 61.79 29
Kerosene MUS_02 MUS Feb-18 3.00 153.75 51.25 16
Kerosene MUS_03 MUS Oct-17 1.29 85.00 66.11 14
Kerosene MUS_03 MUS Nov-17 0.00 0.00 NaN 10
Kerosene MUS_04 MUS Oct-17 2.20 94.00 42.73 5
Kerosene MUS_04 MUS Nov-17 0.33 12.22 36.67 18
Kerosene MUS_04 MUS Dec-17 1.06 70.00 65.76 31
Kerosene MUS_04 MUS Jan-18 0.97 80.00 82.76 30
Kerosene MUS_05 MUS Oct-17 1.75 92.50 52.86 8
Kerosene MUS_05 MUS Nov-17 1.58 70.42 44.47 24
Kerosene MUS_05 MUS Dec-17 2.62 77.50 29.52 8
Kerosene MUS_05 MUS Jan-18 2.42 82.50 34.14 24
Kerosene MUS_05 MUS Feb-18 2.00 80.00 40.00 2
Kerosene MUS_06 MUS Oct-17 3.54 370.00 104.57 13
Kerosene MUS_06 MUS Nov-17 4.00 435.71 108.93 28
Kerosene MUS_06 MUS Dec-17 1.96 200.74 102.26 27
Kerosene MUS_06 MUS Jan-18 0.67 71.11 106.67 27
Kerosene MUS_06 MUS Feb-18 0.71 50.00 70.00 14
Kerosene MUS_07 MUS Oct-17 0.78 37.78 48.57 18
Kerosene MUS_07 MUS Nov-17 1.88 125.00 66.67 8
Kerosene MUS_07 MUS Dec-17 0.25 11.50 46.00 20
Kerosene MUS_07 MUS Jan-18 0.91 40.00 44.00 11
Kerosene MUS_07 MUS Feb-18 0.77 40.00 52.00 13
Kerosene MUS_08 MUS Nov-17 2.08 120.83 58.00 12
Kerosene MUS_08 MUS Dec-17 1.79 72.63 40.59 19
Kerosene MUS_08 MUS Jan-18 2.40 165.60 69.00 25
Kerosene MUS_08 MUS Feb-18 1.69 110.62 65.56 16
Kerosene MUS_09 MUS Oct-17 1.22 3.48 2.86 23
Kerosene MUS_09 MUS Nov-17 0.96 9.64 10.00 28
Kerosene MUS_09 MUS Dec-17 1.67 98.67 59.20 30
Kerosene MUS_09 MUS Jan-18 1.38 111.38 80.75 29
Kerosene MUS_09 MUS Feb-18 1.00 137.69 137.69 13
Kerosene MUS_10 MUS Oct-17 2.67 153.33 57.50 3
Kerosene MUS_10 MUS Nov-17 2.80 211.67 75.60 30
Kerosene MUS_10 MUS Dec-17 2.40 164.67 68.61 30
Kerosene MUS_10 MUS Jan-18 2.41 162.22 67.38 27
Kerosene MUS_10 MUS Feb-18 4.00 230.00 57.50 2
Kerosene SHO_01 SHO Oct-17 2.11 144.44 68.42 18
Kerosene SHO_01 SHO Nov-17 1.69 80.62 47.78 16
Kerosene SHO_01 SHO Dec-17 1.88 135.00 72.00 16
Kerosene SHO_01 SHO Jan-18 2.05 127.37 62.05 19
Kerosene SHO_01 SHO Feb-18 1.47 70.00 47.73 15
Kerosene SHO_02 SHO Oct-17 2.25 183.75 81.67 8
Kerosene SHO_02 SHO Nov-17 2.57 225.71 87.78 21
Kerosene SHO_02 SHO Dec-17 1.67 165.00 99.00 12
Kerosene SHO_02 SHO Jan-18 1.47 130.53 88.57 19
Kerosene SHO_02 SHO Feb-18 0.80 87.33 109.17 15
Kerosene SHO_05 SHO Oct-17 4.40 266.00 60.45 5
Kerosene SHO_05 SHO Nov-17 4.83 345.22 71.53 23
Kerosene SHO_05 SHO Dec-17 2.17 136.67 63.08 6
Kerosene SHO_05 SHO Jan-18 2.25 240.00 106.67 8
Kerosene SHO_05 SHO Feb-18 4.14 212.86 51.38 7
Kerosene SHO_06 SHO Oct-17 0.00 0.00 NaN 24
Kerosene SHO_06 SHO Nov-17 0.00 0.00 NaN 28
Kerosene SHO_06 SHO Dec-17 0.00 0.00 NaN 19
Kerosene SHO_06 SHO Feb-18 0.00 0.00 NaN 13
Kerosene SHO_07 SHO Oct-17 0.77 33.08 43.00 13
Kerosene SHO_07 SHO Nov-17 0.10 5.00 50.00 10
Kerosene SHO_07 SHO Dec-17 0.00 0.00 NaN 20
Kerosene SHO_09 SHO Oct-17 1.90 103.50 54.47 20
Kerosene SHO_09 SHO Nov-17 0.80 25.33 31.67 15
Kerosene SHO_09 SHO Dec-17 0.67 30.00 45.00 3
Kerosene SHO_09 SHO Jan-18 1.53 98.95 64.83 19
Kerosene SHO_09 SHO Feb-18 0.50 15.00 30.00 2
LPG AKO_04 AKO Oct-17 0.90 31.50 35.00 20
LPG AKO_04 AKO Nov-17 1.00 20.00 20.00 1
LPG AKO_04 AKO Dec-17 1.73 48.67 28.08 30
LPG AKO_04 AKO Jan-18 1.00 26.07 26.07 28
LPG AKO_04 AKO Feb-18 0.50 5.71 11.43 14
LPG SHO_01 SHO Nov-17 0.43 12.86 30.00 14
LPG SHO_01 SHO Dec-17 1.86 35.71 19.23 7
LPG SHO_01 SHO Jan-18 0.00 0.00 NaN 19
LPG SHO_01 SHO Feb-18 0.00 0.00 NaN 15
LPG SHO_02 SHO Nov-17 0.00 0.00 NaN 9
LPG SHO_05 SHO Nov-17 0.64 6.82 10.71 22
LPG SHO_05 SHO Dec-17 0.07 2.00 30.00 30
LPG SHO_05 SHO Jan-18 2.00 68.75 34.38 8
LPG SHO_05 SHO Feb-18 1.43 72.86 51.00 7
LPG SHO_06 SHO Oct-17 1.39 67.22 48.40 18
LPG SHO_06 SHO Nov-17 1.11 54.64 49.35 28
LPG SHO_06 SHO Dec-17 1.38 44.29 32.07 21
LPG SHO_06 SHO Feb-18 0.00 0.00 NaN 13
#Calculate summary for the overall groups and stoves from the household-wise results above. 
stats_by_stove_group_month <- dplyr::group_by(stats_grouped_by_hhid_stove_month,stove_descriptions,group,month_year) %>%
    dplyr::summarise(mean_events_per_day=mean(events_per_day, na.rm = TRUE),
                       median_events_per_day=median(events_per_day, na.rm = TRUE),
                       sd_events_per_day=sd(events_per_day, na.rm = TRUE),
                       mean_minutes_per_day_stove_hhid=mean(minutes_per_day_stove_hhid, na.rm = TRUE),
                       median_minutes_per_day_stove_hhid=median(minutes_per_day_stove_hhid, na.rm = TRUE),
                       sd_minutes_per_day_stove_hhid=sd(minutes_per_day_stove_hhid, na.rm = TRUE),
                       households=n(),
                       mean_days_logged=mean(days_logged_per_group_by_stove, na.rm = TRUE))
kable(stats_by_stove_group_month, digits=2)
stove_descriptions group month_year mean_events_per_day median_events_per_day sd_events_per_day mean_minutes_per_day_stove_hhid median_minutes_per_day_stove_hhid sd_minutes_per_day_stove_hhid households mean_days_logged
CleanCook AKO Oct-17 1.87 2.43 1.07 51.56 62.73 36.75 3 14.67
CleanCook AKO Nov-17 0.00 0.00 0.00 0.00 0.00 0.00 3 4.67
CleanCook AKO Dec-17 0.57 0.68 0.53 19.59 21.92 18.53 3 22.33
CleanCook AKO Jan-18 0.95 0.67 1.19 27.58 35.00 29.26 7 13.14
CleanCook AKO Feb-18 1.31 1.00 1.36 27.99 22.50 29.74 8 6.25
CleanCook MUS Oct-17 1.73 1.27 1.08 74.12 32.73 99.97 9 13.67
CleanCook MUS Nov-17 0.81 0.94 0.53 20.20 18.75 16.40 9 21.44
CleanCook MUS Dec-17 0.74 0.83 0.62 21.30 17.83 19.19 9 23.44
CleanCook MUS Jan-18 0.76 1.00 0.75 17.94 7.50 23.07 9 20.33
CleanCook MUS Feb-18 1.01 0.57 1.21 27.44 12.33 36.20 6 9.67
CleanCook SHO Oct-17 0.91 0.82 0.33 28.83 28.21 15.65 6 15.17
CleanCook SHO Nov-17 0.72 0.81 0.41 20.89 19.68 14.24 6 20.17
CleanCook SHO Dec-17 0.58 0.54 0.31 14.21 10.81 9.16 6 17.50
CleanCook SHO Jan-18 0.88 0.65 0.79 22.60 17.71 24.89 6 11.00
CleanCook SHO Feb-18 0.69 0.60 0.74 4.41 0.00 6.86 6 7.83
Kerosene AKO Oct-17 1.51 1.83 0.61 93.49 106.09 49.04 3 16.33
Kerosene AKO Nov-17 1.42 0.73 1.87 86.67 34.55 121.43 3 11.00
Kerosene AKO Dec-17 1.20 0.64 1.04 79.83 28.70 91.38 3 21.33
Kerosene AKO Jan-18 1.23 1.18 0.68 93.01 66.56 72.60 8 16.25
Kerosene AKO Feb-18 0.96 1.00 0.75 63.84 48.57 59.75 8 4.88
Kerosene MUS Oct-17 2.02 1.98 0.93 120.05 93.25 111.24 8 13.12
Kerosene MUS Nov-17 1.78 1.88 1.25 122.46 116.67 136.34 9 20.56
Kerosene MUS Dec-17 1.92 1.88 1.01 121.56 88.08 86.06 8 24.50
Kerosene MUS Jan-18 1.85 1.89 1.03 117.33 96.94 61.97 8 25.25
Kerosene MUS Feb-18 1.88 1.69 1.24 114.58 110.62 66.25 7 10.86
Kerosene SHO Oct-17 1.91 2.01 1.50 121.80 123.97 98.17 6 14.67
Kerosene SHO Nov-17 1.66 1.24 1.83 113.65 52.98 141.28 6 18.83
Kerosene SHO Dec-17 1.06 1.17 0.97 77.78 82.50 75.80 6 12.67
Kerosene SHO Jan-18 1.83 1.79 0.39 149.21 128.95 62.17 4 16.25
Kerosene SHO Feb-18 1.38 0.80 1.63 77.04 70.00 84.24 5 10.40
LPG AKO Oct-17 0.90 0.90 NA 31.50 31.50 NA 1 20.00
LPG AKO Nov-17 1.00 1.00 NA 20.00 20.00 NA 1 1.00
LPG AKO Dec-17 1.73 1.73 NA 48.67 48.67 NA 1 30.00
LPG AKO Jan-18 1.00 1.00 NA 26.07 26.07 NA 1 28.00
LPG AKO Feb-18 0.50 0.50 NA 5.71 5.71 NA 1 14.00
LPG SHO Oct-17 1.39 1.39 NA 67.22 67.22 NA 1 18.00
LPG SHO Nov-17 0.54 0.53 0.46 18.58 9.84 24.61 4 18.25
LPG SHO Dec-17 1.10 1.38 0.93 27.33 35.71 22.35 3 19.33
LPG SHO Jan-18 1.00 1.00 1.41 34.38 34.38 48.61 2 13.50
LPG SHO Feb-18 0.48 0.00 0.82 24.29 0.00 42.06 3 11.67
#Write summary stats to an excel workbook
list_of_datasets <- list("By Stove Group and HHID" = stats_grouped_by_hhid_stove, "By Stove Group" = stats_by_stove_group,
                         "By Stove Type" = stats_by_stove,"By HHID and Monthly" = stats_grouped_by_hhid_stove_month,
                         "By Group and Monthly" = stats_by_stove_group_month)
openxlsx::write.xlsx(list_of_datasets, file = paste0("Summary Statistics ",now(),".xlsx"))

Plot all data time series

  • Plot usage rates (uses/day) by stove type, and region
#Plot time series for each household, colored by filename.  For data completion purposes.
field_timeseries_plot(sumsarized_filtered, "stove_temp", "datetime", "HHID", "stove_descriptions","qc") 

Plot data time series, removing flagged files and households

  • Plot usage rates (uses/day) by stove type, and region
#Plot time series for each household, colored by filename.  Filtered out bad qc data
field_timeseries_plot(dplyr::filter(sumsarized_filtered,grepl("ok",qc)),"stove_temp", "datetime", "HHID", "stove_descriptions","qc") 

List of files without associated HHID and metadata from the tracking sheet.

files_without_hhid <- unique(dplyr::filter(sumsarized_filtered,is.na(HHID)) %>% dplyr::select(fullsumsarizer_filename))   #Data is removed in the next step if there is no HHID
files_without_hhid
## # A tibble: 0 x 1
## # ... with 1 variable: fullsumsarizer_filename <chr>
files_without_metadata <- unique(dplyr::filter(sumsarized_filtered,is.na(stove_descriptions)) %>% dplyr::select(fullsumsarizer_filename))   #Note the name of files for which there is there is no matching filename in the tracking sheet, ergo no metadata from the tracking sheet. Not currently being filtered out, but this should be attended to by fixing any data files/tracking entries that appear in this variable.  Make sure that the actual file name matches what is listed in the tracking sheet.  Files names should also be unique.
files_without_metadata
## # A tibble: 0 x 1
## # ... with 1 variable: fullsumsarizer_filename <chr>
filtered_files <- unique(dplyr::filter(sumsarized_filtered,grepl("ok",qc)) %>% dplyr::select(fullsumsarizer_filename))   #Note the name of files for which there is there is no matching filename in the tracking sheet, ergo no metadata from the tracking sheet. Not currently being filtered out, but this should be attended to by fixing any data files/tracking entries that appear in this variable.  Make sure that the actual file name matches what is listed in the tracking sheet.  Files names should also be unique.
print(filtered_files)
## # A tibble: 329 x 1
##    fullsumsarizer_filename 
##    <chr>                   
##  1 AKO_04CC_DL1.csv        
##  2 AKO_04Ke_DL1.csv        
##  3 AKO_09CC_DL1.csv        
##  4 AKO_09KE_DL1.csv        
##  5 AKO_10CC_DL1.csv        
##  6 AKO_10KE_DL1.csv        
##  7 CC_DL2/AKO_04CC_DL2.csv 
##  8 CC_DL2/AKO_09AMB_DL2.csv
##  9 CC_DL2/AKO_09CC_DL2.csv 
## 10 CC_DL2/AKO_10CC_DL2.csv 
## # ... with 319 more rows

Boxplot usage results

give.n <- function(x){
   return(c(y = 0, label = length(x)))
}

#To make box and whiskers quantiles rather than IQRs.
f <- function(x) {
  r <- quantile(x, probs = c(0.05, 0.25, 0.5, 0.75, 0.95))
  names(r) <- c("ymin", "lower", "middle", "upper", "ymax")
  r
}


#Plot average uses per day, by group, using the padded data set. (one data point per household-stove combo)
g1<- dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID,group) %>%
  dplyr::summarise(avg_events_per_day=sum(use_flag,na.rm=TRUE)/length(unique(day_month_year))) %>%
  ggplot(aes(x=stove_descriptions, y = avg_events_per_day)) +
  stat_summary(fun.data = f, geom="boxplot") +  
    geom_jitter(height = 0,width = 0.2,alpha = 0.25) +
  #facet_grid(stove_use_category~group,scales = "free", space = "free") + 
  stat_summary(fun.data = give.n, geom = "text") + 
  facet_grid(~group,scales = "free", space = "free") + 
  labs(y="Average uses per day",x="") + 
  ggtitle("Average uses per day for each household-stove combination") + 
  theme(axis.text.x = element_text(angle = 30, hjust = 1)) + 
  theme(legend.title = element_blank())
g1

#ggsave(filename="../figures/AverageUsesPerDay_byGrouppadded.png", plot=g1,width = 6, height = 4)


#Plot uses per day, by group, using the padded data set. (one data point per day-household-stove combo)
g11<- dplyr::group_by(ok_cooking_events_padded, stove_descriptions, day_month_year, HHID, group) %>%
  summarise(events_per_day=sum(use_flag,na.rm=TRUE)) %>%
  ggplot(aes(events_per_day)) +
  geom_histogram() +
  #stat_summary(fun.data = f, geom="boxplot") +  
  #geom_jitter(height = 0,width = 0.2,alpha = 0.25) +
  #facet_grid(stove_use_category~group,scales = "free", space = "free") + 
  #stat_summary(fun.data = give.n, geom = "text") + 
  facet_grid(group~stove_descriptions,scales = "free", space = "free") + 
  labs(y="days",x="Number of uses by day") + 
  theme(axis.text.x = element_text(angle = 30, hjust = 1)) + 
  theme(legend.title = element_blank())
g11

##ggsave(filename="../figures/UsesPerDayDistribution_byGrouppadded.png", plot=g11,width = 6, height = 4)


#Plot average uses per day for all groups together
g2 <- dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID) %>%
  dplyr::summarise(avg_events_per_day=sum(use_flag,na.rm=TRUE)/length(unique(day_month_year))) %>%
  ggplot(aes(x=stove_descriptions, y = avg_events_per_day)) +
  stat_summary(fun.data = f, geom="boxplot") +    geom_jitter(height = 0,width = 0.2,alpha = 0.25) + 
  labs(y="Average uses/day",x="") + 
  stat_summary(fun.data = give.n, geom = "text") + 
  theme(axis.text.x = element_text(angle = 60, hjust = 1)) 
g2

#ggsave(filename="../figures/AverageUsesPerDay_All.png", plot=g2,width = 6, height = 4)

#Plot average minutes used per day for each stove-household combination
g3<-  dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID,group) %>%
  dplyr::summarise(avg_events_per_day=sum(duration_minutes,na.rm=TRUE)/length(unique(day_month_year))) %>%
  ggplot(aes(x=stove_descriptions, y = avg_events_per_day)) +
  stat_summary(fun.data = f, geom="boxplot") +   geom_jitter(height = 0,width = 0.2,alpha = 0.25) +
  facet_grid(~group,scales = "free", space = "free") + 
  labs(y="Average minutes used per day",x="") + 
  stat_summary(fun.data = give.n, geom = "text") + 
  theme(axis.text.x = element_text(angle = 60, hjust = 1))
g3

#ggsave(filename="../figures/AverageTimeUsedPerDay_All.png", plot=g3,width = 6, height = 4)

#Average event duration
g4<-  dplyr::group_by(ok_cooking_events_padded,stove_descriptions,HHID,group) %>%
  dplyr::summarise(minutes_per_day_stove_hhid=sum(duration_minutes,na.rm=TRUE)/sum(use_flag,na.rm=TRUE)) %>%  
  ggplot(aes(x=stove_descriptions, y = minutes_per_day_stove_hhid)) + 
  stat_summary(fun.data = f, geom="boxplot") + 
  geom_jitter(height = 0,width = 0.2,alpha = 0.25) +
  stat_summary(fun.data = give.n, geom = "text") + 
  labs(y="Average event duration by household (minutes)",x="") + 
  theme(axis.text.x = element_text(angle = 60, hjust = 1))
g4

#ggsave(filename="../figures/AverageTimeUsedPerEvent_byHousehold.png", plot=g4,width = 6, height = 4)

Time trend plots

#Plot event duration per day by day of week.  Do not use the padded data set here, since there are non-events included in it, and they have an associated time.
g5 <- ggplot(ok_cooking_events, aes(x=day_of_week, y = duration_minutes)) + 
    geom_violin(fun.data = f) +    geom_jitter(height = 0,width = 0.2,alpha = 0.1) +
    facet_wrap(stove_descriptions~group,scales = "free") + 
    labs(y="Cooking event duration (minutes)",x="") + 
    theme(axis.text.x = element_text(angle = 60, hjust = 1))
g5

#ggsave(g5,filename=paste("../figures/DurationbyDayofWeek",y,".png",sep=""))

#Monthly usage summary

monthlyboxplots <-    ggplot(stats_grouped_by_hhid_stove_month,aes(x=month_year, y = events_per_day,color = stove_descriptions)) +
    stat_summary(fun.data = f, geom="boxplot",position = position_dodge(width=0.75)) +
    geom_jitter(alpha = 0.25,position = position_dodge(width=0.75)) +
    labs(y="Events/day",x="") + 
    facet_wrap(stove_descriptions~group,scales = "free") + 
    ggtitle("Monthly trends") + 
    theme(axis.text.x = element_text(angle = 60, hjust = 1),legend.title = element_blank())
monthlyboxplots

#ggsave(monthlyboxplots,filename=paste("../figures/monthlyboxplots",y,".png",sep=""),width = 7, height = 2)


#Plot %stove-days, where stove-day is defined as whether the stove is used on the given day or not.
  #Calculate percent stove-days.
g7 <-dplyr::group_by(ok_cooking_events_padded,day_month_year,stove_descriptions,group) %>%
      dplyr::distinct(HHID,stove_descriptions,day_month_year, .keep_all = TRUE) %>% #No duplicate events from the same hh contributing to stove-days.
      dplyr::mutate(days_used_day_stove_grouped = 100*sum(use_flag, na.rm=TRUE)/(sum(use_flag, na.rm=TRUE)+sum(!use_flag, na.rm=TRUE))) %>%
      ggplot(aes(x=day_month_year, y = days_used_day_stove_grouped,color = stove_descriptions)) + 
    geom_point(alpha = 0.1) + geom_smooth() + #method='lm',formula=y~x) +
    facet_grid(~group,scales = "free", space = "free") + 
    labs(y="% stove days",x="") + 
    theme(legend.title = element_blank()) + 
    theme(axis.text.x = element_text(angle = 60, hjust = 1))
  g7

          #ggsave(g7,filename=paste("../figures/PercentStoveDaysByGroup.png",sep=""))


#Time of day trend.  Based on start time, change it to middle of event?  Remove groups with less than 5 hh's?
#Use unpadded set to get time of day of event starts.
g8 <- ggplot(ok_cooking_events, aes(start_hour, fill = stove_descriptions, 
                      colour = stove_descriptions)) + geom_density(alpha = 0.1) +
      labs(y="Time of day use density",x="Hour of day") +
      ggtitle("stove use density") + 
      facet_grid(~group,scales = "free", space = "free") + 
      theme(plot.title = element_text(hjust = 0.5)) +
      ylim(0, 0.15)
g8

#ggsave(g8,filename=paste("../figures/Density",y,".png",sep=""))


#Usage time series by minutes used each day, by group and stove type  
 g12<- dplyr::group_by(ok_cooking_events_padded,stove_descriptions,day_month_year,group) %>%
  dplyr::summarise(mean_daily_use_tseries=mean(duration_minutes,na.rm=TRUE)) %>%
  ggplot(aes(day_month_year, y=mean_daily_use_tseries,color = stove_descriptions)) + #,label=sprintf("%0.2f", round(usefraction, digits = 2)))) +
  geom_smooth()+
  geom_point(alpha = 0.25)+
  facet_grid(~group~stove_descriptions,scales = "free", space = "free") + 
  ggtitle("Daily average uses by group and stove") + 
  labs(y="Minutes per day",x="") +
  ylim(0,200)
 g12

#ggsave(filename="../figures/Overall_usage_fraction.png", plot=g12,width = 6, height = 4)

Usage fraction result plots

#Daily usage fraction by group. Includes all hh.  We could filter out houses with fewer than x sums to reduce any potential bias from a certain sum type burning up or something.
g10<- dplyr::select(ok_cooking_events_padded,stove_descriptions,start_time,duration_minutes) %>%
  thicken('day', col = 'day') %>% 
  group_by(stove_descriptions, day) %>%
  summarise(avg=mean(duration_minutes,na.rm=TRUE)) %>%
  ggplot(aes(day, avg)) +
  geom_bar(aes(fill = stove_descriptions), 
           col = "black",
           stat = 'identity', 
           position = "fill",size=0) +
  ggtitle("Usage fraction") + 
  labs(y="Usage fraction",x="")  +
  theme(legend.title = element_blank())
g10

#Overall usage fraction by group.  
 g11<- dplyr::select(ok_cooking_events_padded,stove_descriptions,day_month_year,duration_minutes) %>%
  group_by(stove_descriptions) %>%
  summarise(avg=mean(duration_minutes,na.rm=TRUE)) %>%
  dplyr::mutate(usefraction = avg/sum(avg)) %>%
  ggplot(aes(x=1, usefraction,label=sprintf("%0.2f", round(usefraction, digits = 2)))) +
  geom_bar(aes(fill = stove_descriptions), 
           col = "black",
           stat = 'identity', 
           position = "fill",size=0) +
  geom_text(size = 5, position = position_stack(vjust = 0.5))+
  ggtitle("Overall usage fraction") + 
  labs(y="Usage fraction",x="")  +
  theme(legend.title = element_blank())
g11

#ggsave(filename="../figures/Overall_usage_fraction.png", plot=g12,width = 6, height = 4)


#Overall usage fraction by group.  
 g111<- dplyr::select(ok_cooking_events_padded,stove_descriptions,day_month_year,duration_minutes,group) %>%
  group_by(stove_descriptions,group) %>%
  summarise(avg=mean(duration_minutes,na.rm=TRUE)) %>%
  dplyr::mutate(usefraction = avg/sum(avg)) %>%
  ggplot(aes(x=1, usefraction,label=sprintf("%0.2f", round(usefraction, digits = 2)))) +
  geom_bar(aes(fill = stove_descriptions), 
           col = "black",
           stat = 'identity', 
           position = "fill",size=0) +
  geom_text(size = 5, position = position_stack(vjust = 0.5))+
  ggtitle("Overall usage fraction") + 
  facet_grid(~group,scales = "free", space = "free") + 
  labs(y="Usage fraction",x="")  +
  theme(legend.title = element_blank())
g111

#ggsave(filename="../figures/Overall_usage_fraction_bygroup.png", plot=g111,width = 6, height = 4)

Plot deployment details

 #Barplot by day of fraction of stoves monitored... not too interesting but neat coding to look at.
g9<- dplyr::select(ok_cooking_events_padded,stove_descriptions,start_time,duration_minutes) %>%
  thicken('day', col = 'day') %>% #Map data to a higher level variable.  Compresses two data points from one day into one day
  count(stove_descriptions, day) %>%
  ggplot(aes(day, n)) +
  ggtitle("Daily stove monitored by fraction") + 
  labs(y="Monitored fraction",x="")  +
  geom_bar(aes(fill = stove_descriptions), 
           col = "black",
           stat = 'identity', 
           position = "fill", size=0)
g9

#Plot days sampled per file
g6<-  dplyr::distinct(ok_cooking_events_padded,fullsumsarizer_filename,logging_duration_days,stove_descriptions) %>% 
  ggplot(aes(x=stove_descriptions, y = logging_duration_days)) + 
  stat_summary(fun.data = f, geom="boxplot") + geom_jitter(width = 0.05,alpha = 0.25) + 
  #geom_text_repel( aes(label= ifelse(logging_duration_days > 30,as.character(fullsumsarizer_filename),''))) + 
  #facet_grid(~group,scales = "free", space = "free") + 
  labs(y="Days logged per file",x="") + 
  theme(axis.text.x = element_text(angle = 60, hjust = 1))
g6

#ggsave(filename="../figures/DaysSampled_byGroup.pdf", plot=g6)

Summary

Temperature was measured for 23 houses between 2017-10-06 00:01:00 and 2018-02-21 21:15:00. There are no cooking events for homes: MUS_01B, SHO_03B, SHO_04B, SHO_08B, SHO_10B, AKO_07B, AKO_08B.

Temperature data is expected to be missing for: no tests.

Save files

  • save data
  saveRDS(ok_cooking_events, file = "../r_files/ok_cooking_events.RDS")